-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.6 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
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mess Menu</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="notification-bar" class="hidden"></div>
<div class="tabs">
<button class="tab" data-day="Monday">Mon</button>
<button class="tab" data-day="Tuesday">Tue</button>
<button class="tab" data-day="Wednesday">Wed</button>
<button class="tab" data-day="Thursday">Thu</button>
<button class="tab" data-day="Friday">Fri</button>
<button class="tab" data-day="Saturday">Sat</button>
<button class="tab" data-day="Sunday">Sun</button>
</div>
<div id="menu">
<div class="cards-container" id="meal-cards"></div>
</div>
<script src="script.js"></script>
<!--
<footer id="action-footer">
<div class="action-buttons">
<button id="feedback-btn" class="emotion-btn" data-tooltip="We value your feedback!">Feedback</button>
<button id="complaints-btn" class="emotion-btn" data-tooltip="Report your concerns here.">Complaints</button>
<button id="delivery-btn" class="emotion-btn" data-tooltip="Request food delivery with ease!">Food Delivery
</div>
<div class="footer-credit">
Made with ❤️ by <a href="https://www.linkedin.com/in/uttamjodawat" target="_blank">Uttam Jodawat</a> (Maintained by E-Mess Committee)
</div>
</footer>
<script src="footer.js"></script>
-->
<div class="footer-credit">
Made with ❤️ by <a href="https://wa.me/919497300369/" target="_blank">Uttam Jodawat</a>
</div>
</body>
</html>