-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml
32 lines (29 loc) · 873 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive E-commerce Store</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>E-commerce Store</h1>
<div class="cart">
<button id="cartButton">Cart (<span id="cartCount">0</span>)</button>
</div>
</header>
<section id="products" class="product-list">
<!-- Products will be dynamically loaded here -->
</section>
<div id="cartModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2>Your Cart</h2>
<ul id="cartItems"></ul>
<p id="totalPrice"></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>