-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (89 loc) · 3.75 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
<!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>Ecommerce website</title>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<!-- Header -->
<header >
<div class="nav">
<img src="assets/Logo.png" alt=" fashion logo" class="logo">
<i class="fa-solid fa-bag-shopping shop"></i>
</div>
<!-- sidde navbar -->
<div class="side-navbar hide" id="sideBar">
<div class="side-content">
<i class="fa-solid fa-arrow-right-from-bracket exit"></i>
<h2 class="side-title"> The articles</h2>
<hr>
<div class="products">
</div>
<div class="total">
<hr>
<h2 class="total-title"> Total </h2>
<span class="total-price"> 0 </span>$
</div>
<button class="purchase">Buy now</button>
</div>
</div>
</header>
<!-- product container -->
<div class="content-list">
<div class="product-item">
<img src="assets/product1.jpg" alt="" class="item-image">
<h2 class="item-title">Black Shirt </h2>
<span class="item-price">40 $</span>
<i class="fa-solid fa-cart-plus"></i>
</div>
<div class="product-item">
<img src="assets/product2.jpg" alt="" class="item-image">
<h2 class="item-title">Flourish Shirt </h2>
<span class="item-price">20 $</span>
<i class="fa-solid fa-cart-plus"></i>
</div>
<div class="product-item">
<img src="assets/product3.jpg" alt="" class="item-image">
<h2 class="item-title">Trousers </h2>
<span class="item-price">100 $</span>
<i class="fa-solid fa-cart-plus"></i>
</div>
<div class="product-item">
<img src="assets/product4.jpg" alt="" class="item-image">
<h2 class="item-title">Dark Blue Flourish Shirt </h2>
<span class="item-price">60 $</span>
<i class="fa-solid fa-cart-plus"></i>
</div>
<div class="product-item">
<img src="assets/product5.jpg" alt="" class="item-image">
<h2 class="item-title">shirt </h2>
<span class="item-price">500 $</span>
<i class="fa-solid fa-cart-plus"></i>
</div>
<div class="product-item">
<img src="assets/product6.jpg" alt="" class="item-image">
<h2 class="item-title"> Formel shirt </h2>
<span class="item-price">20 $</span>
<i class="fa-solid fa-cart-plus"></i>
</div>
<div class="product-item">
<img src="assets/product7.jpg" alt="" class="item-image">
<h2 class="item-title"> Short Pants</h2>
<span class="item-price">220 $</span>
<i class="fa-solid fa-cart-plus"></i>
</div>
<div class="product-item">
<img src="assets/product8.jpg" alt="" class="item-image">
<h2 class="item-title">Feminin Shirt </h2>
<span class="item-price">200 $</span>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
<!-- adding javascript -->
<script src="javascript/ecommerce.js"></script>
<script src="https://kit.fontawesome.com/5ce33b27b6.js" crossorigin="anonymous"></script>
</body>
</html>