-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 980 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Product Card</title>
</head>
<body>
<div class="product">
<div class="imagebox">
<img src="image.png" alt="Shoe">
</div>
<div class="specs">
<h2>BRAND<br><span>NIKE</span></h2>
<div class="price">$2000</div>
<label>SIZE</label>
<ul>
<li>UK 6</li>
<li>UK 7</li>
<li>UK 8</li>
<li>UK 9</li>
<li>UK 10</li>
</ul>
<label>COLOR</label>
<ul class="color">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<a href="#">ORDER NOW</a>
</div>
</div>
</body>
</html>