-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathindex.html
31 lines (31 loc) · 890 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>CodeCuisine Menu</title>
</head>
<body>
<header>
<h1>🍝 Welcome to CodeCuisine 🥖</h1>
<p>Your Delicious Food Awaits!</p>
</header>
<main>
<section id="menu">
<!-- Menu items will be dynamically generated here -->
</section>
<section id="order">
<h2>Your Order</h2>
<ul id="order-items">
<!-- Order items will be displayed here -->
</ul>
<p>Total: R<span id="order-total">0.00</span></p>
</section>
</main>
<footer>
<p>© 2024 CodeCuisine. All rights reserved.</p>
</footer>
<script src="index.js"></script>
</body>
</html>