-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
137 lines (123 loc) · 4.43 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ShoeMart</title>
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="header">
<a href="#" class="logo"><img src="sneakers.png" alt="logo"/>ShoeMart.</a>
<i class="bx bx-menu" id="menu-icon"></i>
<nav class="navbar" id="navbar">
<a href="#home" style="--i: 1" class="active">Home</a>
<a href="#products" style="--i: 2">Products</a>
<a href="#pricing" style="--i: 3">Pricing</a>
<a href="#about" style="--i: 4">about</a>
<a href="#cart" style="--i: 5"><i class='bx bxs-cart-alt'></i></a>
</nav>
</header>
<section class="home" id="home">
<div class="circle"></div>
<div class="home-content">
<h1>Find <span>your</span></h1>
<h1>dream shoes</h1>
<h3>Welcome to <span class="multiple-text">ShoeMart</span></h3>
<p>
Step into Style, Step into Comfort Shoemart, Where Your Feet Find the Perfect Fit!
All type of shoes are available.
</p>
<div class="social-media">
<a href="#" style="--i: 8"
><i class="bx bxl-twitter"></i
></a>
<a href="#" style="--i: 9"
><i class="bx bxl-instagram-alt"></i
></a>
<a
href="#"
style="--i: 10"
><i class="bx bxl-linkedin"></i
></a>
</div>
<a href="#products" class="btn" id="downloadBtn"
><download>Explore Now</download></a
>
</div>
<div class="home-img">
<img src="pngwing.com (2).png" alt="" />
</div>
</section>
<section id="products">
<div class="shop-section">
<div class="box1 box">
<div class="box-content">
<h2>Nike</h2>
<div class="box-img" style="background-image: url('nike.jpeg');"></div>
<p>See more</p>
</div>
</div>
<div class="box2 box"> <div class="box-content">
<h2>Puma</h2>
<div class="box-img" style="background-image: url('puma.jpeg');"></div>
<p>See more</p>
</div></div>
<div class="box3 box"> <div class="box-content">
<h2>Adidas</h2>
<div class="box-img" style="background-image: url('Adidas.jpeg');"></div>
<p>See more</p>
</div></div>
<div class="box4 box"> <div class="box-content">
<h2>Sparx</h2>
<div class="box-img" style="background-image: url('sparx.jpeg');"></div>
<p>See more</p>
</div></div>
<div class="box1 box">
<div class="box-content">
<h2>Skechers</h2>
<div class="box-img" style="background-image: url('skechers.jpeg');"></div>
<p>See more</p>
</div>
</div>
<div class="box2 box"> <div class="box-content">
<h2>Campus</h2>
<div class="box-img" style="background-image: url('campus.jpeg');"></div>
<p>See more</p>
</div></div>
<div class="box3 box"> <div class="box-content">
<h2>Reebok</h2>
<div class="box-img" style="background-image: url('rebok.jpeg');"></div>
<p>See more</p>
</div></div>
<div class="box4 box"> <div class="box-content">
<h2>Other</h2>
<div class="box-img" style="background-image: url('hrx.jpeg');"></div>
<p>See more</p>
</div></div>
</div>
</section>
<div class="foot-panel3">
<div class="logo">
<h3><img src="sneakers.png" alt="logo"/>ShoeMart</h3>
</div>
</div>
<footer>
<div class="foot-panel4">
<div class="pages">
<a>conditions of use </a>
<a>Privacy Notice </a>
<a>Your Ads Privacy Choices</a>
</div>
<div class="copyright">
© 1996-2023, ShoeMart, Developed By @abhijitmotekar
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>