-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (82 loc) · 3.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minz</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
<link
href="https://cdn.jsdelivr.net/npm/remixicon@4.3.0/fonts/remixicon.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<div class="nav">
<div class="nav-1">
<img src="Logo.jpg" alt="logo">
<ul>
<li>Home</li>
<li>Men</li>
<li>Women</li>
<li>Collection</li>
<li>Contact</li>
</ul>
</div>
<div class="nav-2">
<i class="ri-search-line"></i>
<i class="ri-shopping-cart-line"></i>
<i class="ri-menu-line"></i>
</div>
</div>
<div class="content">
<div class="content-left">
<h5>Explore Limited edition</h5>
<h1>Minz Limited Edition</h1>
<p>"Make a statement with our exclusive limited edition sneakers. These coveted kicks, crafted with premium materials and unique designs, are a must-have for any sneakerhead. Don't miss your chance to own a piece of sneaker history. Shop now and elevate your footwear game."</p>
<button class="btn">Shop Now</button>
</div>
<div class="content-right">
<div class="product">
<img src="Shoes/Shoe 3.jpg" alt="dragon-shoes-1">
<h4>Drago-X-2</h4>
<p class="category">Men's Shoes</p>
<p class="color">Red</p>
<p class="price"> ₹ 15,999</p>
</div>
<div class="product">
<img src="Shoes/Shoe 1.jpg" alt="dragon-shoes-1">
<h4>Drago-Y-7</h4>
<p class="category">Men's Shoes</p>
<p class="color">Orange</p>
<p class="price"> ₹ 18,999</p>
</div>
<div class="product">
<img src="Shoes/Shoe 5.jpg" alt="dragon-shoes-1">
<h4>Drago-X-14</h4>
<p class="category">Men's Shoes</p>
<p class="color">Black</p>
<p class="price"> ₹ 25,999</p>
</div>
<div class="product">
<img src="Shoes/Shoe 2.jpg" alt="dragon-shoes-1">
<h4>Drago-Y-1</h4>
<p class="category">Men's Shoes</p>
<p class="color">Grey</p>
<p class="price"> ₹ 10,999</p>
</div>
<div class="product">
<img src="Shoes/Shoe 4.jpg" alt="dragon-shoes-1">
<h4>Drago-X-7</h4>
<p class="category">Men's Shoes</p>
<p class="color">Gold</p>
<p class="price"> ₹ 1,22,999</p>
</div>
</div>
</div>
</div>
</body>
</html>