-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (87 loc) · 3.5 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
<!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">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<script src="https://unpkg.com/[email protected]/dist/boxicons.js"></script>
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<!-- Header-->
<header>
<!-- Nav -->
<div class="nav container">
<a href="#" class="logo">Works With Ezlo</a>
<!-- Cart Icon-->
<i class='bx bxs-shopping-bag' id="cart-icon"></i>
</div>
</header>
<!-- New Products pages -->
<section class="shop container">
<h2 class="section-title">Shop Products</h2>
<!-- Content -->
<div class="shop-content">
<!-- Box 1 -->
<div class="product-box">
<img src="img/product1.jpg" alt="" class="product-img">
<h2 class="product-title">AEROREADY SHIRT</h2>
<span class="price">25$</span>
<i class="bx bx-shopping-bag add-cart"></i>
</div>
<!-- Box 2 -->
<div class="product-box">
<img src="img/product2.jpg" alt="" class="product-img">
<h2 class="product-title">RED SHIRT</h2>
<span class="price">25$</span>
<i class="bx bx-shopping-bag add-cart"></i>
</div>
<!-- Box 3 -->
<div class="product-box">
<img src="img/product3.jpg" alt="" class="product-img">
<h2 class="product-title">PANTS BLUE</h2>
<span class="price">25$</span>
<i class="bx bx-shopping-bag add-cart"></i>
</div>
<!-- Box 4 -->
<div class="product-box">
<img src="img/product4.jpg" alt="" class="product-img">
<h2 class="product-title">JACKET MONTANA</h2>
<span class="price">25$</span>
<i class="bx bx-shopping-bag add-cart"></i>
</div>
<!-- Box 5 -->
<div class="product-box">
<img src="img/product5.jpg" alt="" class="product-img">
<h2 class="product-title">TRIVIRI SHOES</h2>
<span class="price">25$</span>
<i class="bx bx-shopping-bag add-cart"></i>
</div>
<!-- Box 6 -->
<div class="product-box">
<img src="img/product6.jpg" alt="" class="product-img">
<h2 class="product-title">BUMBUM SHIRT</h2>
<span class="price">25$</span>
<i class="bx bx-shopping-bag add-cart"></i>
</div>
<!-- Box 7 -->
<div class="product-box">
<img src="img/product7.jpg" alt="" class="product-img">
<h2 class="product-title">PARAMPINTO SOCKS</h2>
<span class="price">25$</span>
<i class="bx bx-shopping-bag add-cart"></i>
</div>
<!-- Box 8 -->
<div class="product-box">
<img src="img/product8.jpg" alt="" class="product-img">
<h2 class="product-title">TERLIK PEMBE</h2>
<span class="price">25$</span>
<i class="bx bx-shopping-bag add-cart"></i>
</div>
</div>
</section>
</body>
</html>