-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (70 loc) · 1.98 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
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<title>Mobile UI</title>
</head>
<body>
<div class="container">
<div class="card">
<div class="card-head">
<img src="mark.png" alt="logo" class="card-logo">
<img width="220px" src="sneaker.png" alt="shoe" class="product-img">
<div class="product-detail">
<h2>Hartbeespoort</h2>
Support and Nike Zoom air come together for a more
supportive feel with high-speed responsiveness
</div>
<span class="back-text">FAS</span>
</div>
<div class="card-body">
<div class="product-desc">
<span class="product-title">
Hartbee<b>spoort</b>
<span class="badge">
New
</span>
</span>
<span class="product-caption">
Basket Ball Collection
</span>
<span class="product-rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star grey"></i>
</span>
</div>
<div class="product-properties">
<span class="product-size">
<h4>Size</h4>
<ul class="ul-size">
<li><a href="#">7</a></li>
<li><a href="#">8</a></li>
<li><a href="#">9</a></li>
<li><a href="#" class="active">10</a></li>
<li><a href="#">11</a></li>
</ul>
</span>
<span class="product-color">
<h4>Color</h4>
<ul class="ul-color">
<li><a href="#" class="orange active"></a></li>
<li><a href="#" class="green"></a></li>
<li><a href="#" class="yellow"></a></li>
</ul>
</span>
<span class="product-price">
USD<b>23,453</b>
</span>
</div>
</div>
</div>
</div>
</body>
</html>