-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
140 lines (106 loc) · 4.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>docan</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE-edfe">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- box icon -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- stylesheet -->
<link href="style.css" rel="stylesheet">
</head>
<body>
<!-- heder -->
<header>
<!-- nav -->
<div class="nav container">
<h1 href="#" class="logo"> <span>E</span> ecomatse</h1>
<!-- cart icon -->
<i class='bx bx-shopping-bag' id="cart-icon"></i>
<!-- cart -->
<div class="cart">
<h1 class="cart-title">your cart</h1>
<!-- content? -->
<div class="cart-content">
<!-- testbox -->
<div class="cart-box">
<!-- <img src="assets/img/product2.jpg" alt="" class="cart-img">
<div class="detail-box">
<div class="cart-product-title">BACKPACK</div>
<div class="cart-price">$25.04</div>
<input type="number" value="1" class="cart-quantity">
</div>
<i class="bx bxs-trash-alt cart-remove"></i> -->
<!-- </div> -->
<!-- </div> -->
<!-- total -->
<div class="total">
<div class="total-title">total</div>
<div class="total-price">$0</div>
<!-- buy button -->
<button type="button" class="btn-buy">Buy Now</button>
<!-- cart close -->
<i class="bx bx-x" id="cart-close"></i>
</div>
</div>
</div>
</header>
<!-- shop setion -->
<section class="shop container">
<h2 class="section-title">Shop Products</h2>
<div class="shop-content">
<!-- <div class="product-box">
<img src="assets/img/product1.jpg" alt="" class="product-img">
<h2 class="product-title">Nike Shoes1</h2>
<span class="product-price">$79.5</span>
<i class=' bx bx-shopping-bag add-cart'></i>
</div> -->
<!--
<div class="product-box">
<img src="assets/img/product2.jpg" alt="" class="product-img">
<h2 class="product-title">Nike Shoes2</h2>
<span class="product-price">$79.5</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<div class="product-box">
<img src="assets/img/product3.jpg" alt="" class="product-img">
<h2 class="product-title">Nike Shoes3</h2>
<span class="product-price">$79.5</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<div class="product-box">
<img src="assets/img/product4.jpg" alt="" class="product-img">
<h2 class="product-title">Nike Shoes4</h2>
<span class="product-price">$79.5</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<div class="product-box">
<img src="assets/img/product5.jpg" alt="" class="product-img">
<h2 class="product-title">Nike Shoes5</h2>
<span class="product-price">$79.5</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<div class="product-box">
<img src="assets/img/product6.jpg" alt="" class="product-img">
<h2 class="product-title">Nike Shoes6</h2>
<span class="product-price">$79.5</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<div class="product-box">
<img src="assets/img/product7.jpg" alt="" class="product-img">
<h2 class="product-title">Nike Shoes7</h2>
<span class="product-price">$79.5</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div>
<div class="product-box">
<img src="assets/img/product8.jpg" alt="" class="product-img">
<h2 class="product-title">Nike Shoes8</h2>
<span class="product-price">$79.5</span>
<i class='bx bx-shopping-bag add-cart'></i>
</div> -->
</div>
</section>
<script src="main.js"></script>
</body>
</html>