-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.1 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>Dynamic Product Line</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<h1>Dynamic Product Line</h1>
<nav>
<ul>
<li><a href="#products">Products</a></li>
<li><a href="#cart">Cart</a></li>
</ul>
</nav>
<img src="images/walmartlogo.png" alt="Logo" class="logo">
</header>
<main>
<section id="products">
<h2>Our Products</h2>
<div id="product-list"></div>
</section>
<section id="cart">
<h2>Shopping Cart</h2>
<div id="cart-items"></div>
<p>Total: $<span id="total-price">0.00</span></p>
<button id="clear-cart">Clear Cart</button>
</section>
</main>
<footer>
<p>© 2024 Dynamic Product Line</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>