-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Electromart</title>
<script src="https://kit.fontawesome.com/563a9fbfb8.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="header">
<p class="logo">ELECTROMART</p>
<div class="cart">
<i class="fa-solid fa-cart-shopping"></i>
<p id="count">0</p>
</div>
</div>
<div class="container">
<div id="root"></div>
<div class="sidebar">
<div class="head">
<p>My Cart</p>
</div>
<div id="cartItems" class="cartItem">
Your cart is empty
</div>
<div class="foot">
<h3>Total</h3>
<h2 id="total">Rs.0.00</h2>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>