-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
155 lines (151 loc) · 5.37 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
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="./css/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>books store</title>
</head>
<body>
<!-- head section -->
<header id="head">
<img class="logo-bookstore" src="./assets/bookshop.jpg" alt="bookstore" />
<nav id="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Account</a></li>
</ul>
</nav>
</header>
<!-- main section -->
<main id="main">
<!-- carte items details -->
<div class="small-container">
<table>
<tr>
<th>products</th>
<th>quantity</th>
<th>Price</th>
<th></th>
</tr>
<!-- first product -->
<tr id="product1">
<td>
<div class="product-info1">
<div class="product-img">
<img
src="./assets/product1.jpg"
alt="a carnival of Snackery"
/>
<button class="heart" id="heartid1"> <img id="heart1" class="gray-heart" src="/assets/gray-heart.png" alt=""></i></button></i>
</div>
<div class="info1">
<h2>a carnival of Snackery</h2>
<h3><span class="price1">25</span>dt</h3>
</div>
</div>
</td>
<td>
<button class="minus-button1">-</button>
<input type="text" class="qty1" value="1" />
<button class="plus-button1">+</button>
</td>
<td class="price-style"><span class="total1">25</span>dt</td>
<td>
<button class="remove1">Remove item</button>
</td>
</tr>
<!-- second product -->
<tr id="product2">
<td>
<div class="product-info">
<div class="product-img">
<img
src="./assets/product2.png"
alt="J.D. and the Great Barber Battle"
/>
<button class="heart" id="heartid2"> <img id="heart2" class="gray-heart" src="/assets/gray-heart.png" alt=""></i></button></i>
</div>
<div class="info">
<h2>J.D. and the Great Barber Battle</h2>
<h3><span class="price2">35</span>dt</h3>
</div>
</div>
</td>
<td>
<button class="minus-button2">-</button>
<input type="text" value="1" class="qty2" />
<button class="plus-button2">+</button>
</td>
<td class="price-style"><span class="total2">35</span>dt</td>
<td><button class="remove2">Remove item</button></td>
</tr>
<!-- third product -->
<tr id="product3">
<td>
<div class="product-info">
<div class="product-img">
<img
src="./assets/product3.jpg"
alt="Sydney and Taylor Explore the Whole Wide World"
/>
<button class="heart" id="heartid3"> <img id="heart3" class="gray-heart" src="/assets/gray-heart.png" alt=""></i></button></i>
</div>
<div class="info">
<h3>Sydney and Taylor Explore the Whole Wide World</h3>
<h2><span class="price3">30</span>dt</h2>
</div>
</div>
</td>
<td>
<button class="minus-button3">-</button>
<input type="text" value="1" class="qty3" />
<button class="plus-button3">+</button>
</td>
<td class="price-style"><span class="total3">30</span>dt</td>
<td><button class="remove3">Remove item</button></td>
</tr>
</table>
<!-- total price -->
<button class="check-total">check total</button>
<div class="totalprice">
<span class="totalx">Total: </span>
<span class="total-price"> </span>
<span class="totalx">dt </span>
</div>
</div>
</main>
<!-- footer section -->
<footer class="footer">
<div class="feedback">
<button>ANY FEEDBACK?</button>
</div>
<div class="follow-us">
<h3>FIND US ON</h3>
<a
href="https://www.facebook.com/profile.php?id=100009466028375"
class="fa fa-facebook"
></a>
<a
href="https://www.instagram.com/asma_sahraoui/?hl=fr"
class="fa fa-instagram"
></a>
</div>
<div class="copyright"><p>Copyright 2021- ASMA</p></div>
</footer>
<script src="js/test.js"></script>
</body>
</html>