-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (144 loc) · 6.61 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
138
139
140
141
142
143
144
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="./css/fontello.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/media.css">
<title>Document</title>
</head>
<body>
<header class="header">
<div class="container">
<nav class="nav">
<div class="header-logo">
<img src="./images/header-logo.svg" alt="logo">
</div>
<ul class="top-menu">
<li><a href="#" class="top-menu-link">Home</a></li>
<li><a href="#" class="top-menu-link">About</a></li>
<li><a href="#" class="top-menu-link">Product</a></li>
<li><a href="#" class="top-menu-link">blog</a></li>
<li><a href="#" class="top-menu-link">shop</a></li>
<li><a href="#" class="top-menu-link">Contact us</a></li>
</ul>
<div class="top-bar">
<div class="top-bar-item">
<i class='bx bx-search'></i>
</div>
<div class="top-bar-item">
<i class='bx bx-cart'><span>3</span></i>
</div>
<div class="top-bar-item">
<i class='bx bx-user'></i>
</div>
</div>
<button class="mobile-menu">
<i class="icon-menu"></i>
</button>
</nav>
</div>
</header>
<main>
<section class="hero">
<div class="container">
<div class="row">
<div class="col-6">
<div class="hero-box">
<h3 class="hero-title">Favorite brands</h3>
<h1 class="hero-heading"><span>An exciting place</span>
for the whole family to shop.</h1>
<p class="hero-desc">The standard chunk of Lorem Ipsum used since the 1500s is reproduced below
for those interested.</p>
<div class="shop-now">
<a href="#" class="btn">Shop Now</a>
<span class="new-price">$ 249.99</span>
<span class="old-price">$ 249.99</span>
</div>
</div>
</div>
<div class="col-6">
<img src="./images/hero-img.png" alt="#">
</div>
</div>
<div class="hero-logotypes">
<img src="./images/cl_logo4.png" alt="logo">
<img src="./images/cl_logo5.png" alt="logo">
<img src="./images/cl_logo7.png" alt="logo">
<img src="./images/cl_logo2.png" alt="logo">
</div>
</div>
</section>
<section class="recent-products">
<div class="container">
<div class="row">
<div class="col-6">
<div class="recent-box">
<div class="row">
<div class="col-6">
<div class="recent-box-img">
<i class='bx bx-cart'></i>
<img src="./images/Rectangle%2039.png" alt="">
</div>
</div>
<div class="col-6">
<div class="recent-box-info">
<h2 class="recent-box-title">Always in style!</h2>
<p class="recent-box-desc">The standard chunk of Lorem Ipsum below for those
interested. The standard chunk of for those interested.</p>
<span class="new-price">$ 249.99</span>
<span class="old-price">/ $ 249.99</span>
<div class="reviews">
<i class='bx bxs-star'></i>
<i class='bx bxs-star'></i>
<i class='bx bxs-star'></i>
<i class='bx bxs-star'></i>
<i class='bx bxs-star'></i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-6">
<div class="recent-box">
<div class="row">
<div class="col-6">
<div class="recent-box-img">
<i class='bx bx-cart'></i>
<img src="./images/Rectangle%2053.png" alt="#">
</div>
</div>
<div class="col-6">
<div class="recent-box-info">
<h2 class="recent-box-title">Always in style!</h2>
<p class="recent-box-desc">The standard chunk of Lorem Ipsum below for those
interested. The standard chunk of for those interested.</p>
<span class="new-price">$ 249.99</span>
<span class="old-price">/ $ 249.99</span>
<div class="reviews">
<i class='bx bxs-star'></i>
<i class='bx bxs-star'></i>
<i class='bx bxs-star'></i>
<i class='bx bxs-star'></i>
<i class='bx bxs-star'></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<script src="./js/jquery.js"></script>
<script src="./js/owl.carousel.min.js"></script>
<script src="./js/main.js"></script>
</body>
</html>