-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (95 loc) · 3.03 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>product Card</title>
<link rel="stylesheet" href="style.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<style>
h1{
color: #ff6d39;
font-weight: bold;
font-size:22px;
margin-top:21px;
display: inline-block;
}
h2{
color: #ffffff;
font-weight: 800;
font-size: 29px;
margin-top: 10px;
}
h3{
color: #ffffff;
font-weight: 500;
font-size: 20px;
margin-top: 84px;
}
h4{
color: #ffffff;
font-weight: bold;
font-size: 20px;
margin-top: 10px;
display: inline-block;
}
ul{
list-style-type: none;
}
li{
display: inline-block;
margin-right: 25px;
color: white;
font-weight: 500;
font-size: 11px;
margin-top: 20px;
}
.product-name i:hover{
color: #ff6d39;
cursor: pointer;
}
</style>
</head>
<body>
<div class="card">
<div class="left">
<img src="./asset/shoe.png" alt="shoe picture">
<i class="fa fa-long-arrow-left"></i>
<i class="fa fa-long-arrow-right"></i>
</div>
<div class="right">
<div class="product-info">
<div class="product-name">
<h1>SportMax</h1>
<i class="fa fa-search"></i>
<i class="fa fa-user"></i>
<i class="fa fa-shopping-cart"></i>
</div>
<div class="details">
<h3>Winter Collection</h3>
<h2>Unisex Black Sneakers</h2>
<h4><i class="fa fa-dollar"></i>150</h4>
<h4 class="dis"><i class="fa fa-dollar"></i>200</h4>
</div>
<ul>
<li>Size</li>
<li class="bg">7</li>
<li class="bg">8</li>
<li class="bg">9</li>
<li class="bg">10</li>
<li class="bg">11</li>
</ul>
<ul>
<li>Color</li>
<li class="yellow"></li>
<li class="black"></li>
<li class="blue"></li>
</ul>
<span class="foot"><i class="fa fa-shopping-bag"></i>Buy Now</span>
<span class="foot"><i class="fa fa-shopping-cart"></i>Add To Cart</span>
</div>
</div>
</div>
</body>
</html>