-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathth.html
More file actions
41 lines (30 loc) · 1.29 KB
/
th.html
File metadata and controls
41 lines (30 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meals Options - Thursday</title>
<link rel="stylesheet" href="monday.css">
</head>
<body>
<div class="container">
<h1>MEALS OPTIONS</h1>
<button id="breakfast_toggle" onclick="toggleMenu('breakfast')">Breakfast</button>
<div id="breakfast" style="display:none;"></div>
<button id="lunch_toggle" onclick="toggleMenu('lunch')">Lunch</button>
<div id="lunch" style="display:none;"></div>
<button id="snacks_toggle" onclick="toggleMenu('snacks')">Snacks</button>
<div id="snacks" style="display:none;"></div>
<button id="dinner_toggle" onclick="toggleMenu('dinner')">Dinner</button>
<div id="dinner" style="display:none;"></div>
<button onclick="calculateTotal()">Calculate Total</button>
<button class="done-button" onclick="done()">Done</button>
<button class="back-button" onclick="goBack()">Back</button>
<div id="totalBox" class="total-box" style="display: none;">
<p id="totalAmount">Total Amount: ₹0</p>
<button id="okButton" onclick="closeTotalBox()">OK</button>
</div>
</div>
<script src="th.js"></script>
</body>
</html>