-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.html
100 lines (97 loc) · 3.86 KB
/
site.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
<!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 To CSS -->
<link rel="stylesheet" href="css/style.css">
<!-- Box Icons -->
<link href='https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css'rel='stylesheet'>
<head>
<header>
<div class="nav container">
<a href="#" class="logo"> Ecommerce </a>
<!-- Cart-Icon -->
<i class='bx bx-shopping-bag' id="cart-icon"></i>
<div class="cart">
<h2 class="cart-title">Your Cart</h2>
<div class="cart-content">
</div>
<!-- Total -->
<div class="total">
<div class="total-title">Total</div>
<div class="total-price">$0</div>
</div>
<!-- Buy Button -->
<button type="button"class="btn-buy">Buy Now</button>
<!-- Cart Close -->
<i class='bx bx-x'id="close-cart"></i>
</div>
</div>
</header>
<section class="shop container">
<h2 class="section-title">Shop Products</h2>
<div class="shop-content">
<!-- Box1-->
<div class="product-box">
<img src="img/3.png"alt="" class="product-img">
<h2 class="product-title">AEROREADY SHIRT</h2>
<span class="price">$40</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<!-- Box2-->
<div class="product-box">
<img src="img/10.png"alt="" class="product-img">
<h2 class="product-title">AEROREADY cc</h2>
<span class="price">$70</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<!-- Box3-->
<div class="product-box">
<img src="img/5.png"alt="" class="product-img">
<h2 class="product-title">AEROREADY jb</h2>
<span class="price">$40</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<!-- Box4-->
<div class="product-box">
<img src="img/7.png"alt="" class="product-img">
<h2 class="product-title">AEROREADY jj</h2>
<span class="price">$30</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<!-- Box5-->
<div class="product-box">
<img src="img/9.png"alt="" class="product-img">
<h2 class="product-title">AEROREADY bb</h2>
<span class="price">$20</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<!-- Box6-->
<div class="product-box">
<img src="img/4.png"alt="" class="product-img">
<h2 class="product-title">AEROREADY pp</h2>
<span class="price">$25</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<!-- Box7-->
<div class="product-box">
<img src="img/2.png"alt="" class="product-img">
<h2 class="product-title">AEROREADY hh</h2>
<span class="price">$75</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<!-- Box8-->
<div class="product-box">
<img src="img/3p.png"alt="" class="product-img">
<h2 class="product-title">AEROREADY mm</h2>
<span class="price">$100</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
</div>
</section>
<script src="js/main.js"></script>
</body>
</html>