-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (64 loc) · 2.07 KB
/
Copy pathindex.html
File metadata and controls
67 lines (64 loc) · 2.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="logo">CODEBREW</div>
<ul class="nav-links">
<li>
<a href="#">HOME</a>
</li>
<li>
<a href="#">MENU</a>
</li>
<li>
<a href="#">CONTACT</a>
</li>
</ul>
</nav>
<section class="hero">
<div class="hero-content">
<h1>Your code</h1>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Eos, ducimus!</p>
<h3 id="total-bill">Total: $0.00</h3>
<div class="cart-summary">
<h4>Your Cart:</h4>
<ul id="cart-list">
</ul>
</div>
<button id="order-btn" class="cta-button">Get</button>
<button id="clear-btn">
Clear Cart
</button>
</section>
<section class="menu-section">
<h2>Our top picks</h2>
<div class="container">
<div class="cards" id="espresso-card">
<h3>Espresso</h3>
<p>Pure energy in a cup. Dark, rich and intense.</p>
<span class="price">$3.50</span>
</div>
<div class="cards" id="cappuccino-card">
<h3>Cappuccino</h3>
<p>Lorem ipsum dolor sit amet consectetur.</p>
<span class="price">$4.50</span>
</div>
<div class="cards" id="coldbrew-card">
<h3>Cold Brew</h3>
<p>Lorem ipsum dolor sit amet consectetur.</p>
<span class="price">$5.00</span>
</div>
</div>
</section>
<footer class="foot">
<p>© 2025 CodeBrew Coffee. Made with caffeine and code.</p>
</footer>
<script src="script.js"></script>
</body>
</html>