-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmenu.html
95 lines (90 loc) · 3.99 KB
/
menu.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE HTML>
<html>
<head>
<title>Canapé</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<!-- Header -->
<header id="header" class="preview">
<div class="inner">
<div class="content">
<h1>Canapé</h1>
<h2>Mess Management System</h2>
</div>
<a href="index.html" class="button hidden"><span>Let's Go</span></a>
</div>
</header>
<!-- Main -->
<div id="preview">
<div class="inner">
<div class="content">
<header>
<h2>Canapé</h2>
</header>
<p>Hi Shivam! Here's today's Menu.</p>
<div style="overflow-x:auto;">
<table class="table-wrapper">
<tr>
<th>Breakfast</th>
</tr>
<tr>
<td>Paneer Parantha<br />Omlette<br />Cold Coffee<br />Dalia</td>
</tr>
<tr>
<th>Lunch</th>
</tr>
<tr>
<td>Pav Bhaji<br />Rooh Afza Drink</td>
</tr>
<tr>
<th>Dinner</th>
</tr>
<tr>
<td>Jeera Rice<br />Roti<br />Moong Dal<br />Gravy Soya Chaap<br />Gulab Jamun</td>
</tr>
</table>
</div><br />
<p>Wanna Skip Meal?</p>
<div>
<input type="button" value="Skip Meal" onclick="location.href='skip.html'">
</div>
<br />
<p>More Actions</p>
<div>
<input type="button" value="Feedback" onclick="location.href='feedback.html'">
<input type="button" value="Logout" onclick="location.href='index.html'">
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<a href="#" class="info fa fa-info-circle"><span>About</span></a>
<div class="inner">
<div class="content">
<h3>About Canapé</h3>
<p>Canapé deals with the technological aspect in solving the problem of food wastage in college mess at individual level. The proposed concept can be implemented by universities and colleges in their mess to provoke students to save food and therefore save money. The solution basically involves an Android Application which handles the whole Mess Management in a concise manner.</p>
</div>
<div class="copyright">
<h3>Follow Developer</h3>
<ul class="icons">
<li><a href="https://linkedin.com/in/ShivamGoyal1899" class="icon fa-linkedin" target="_blank"><span class="label">LinkedIn</span></a></li>
<li><a href="https://github.com/ShivamGoyal1899" class="icon fa-github" target="_blank"><span class="label">GitHub</span></a></li>
<li><a href="https://twitter.com/ShivamGoyal1899" class="icon fa-twitter" target="_blank"><span class="label">Twitter</span></a></li>
<li><a href="https://instagram.com/shivam.dev" class="icon fa-instagram" target="_blank"><span class="label">Instagram</span></a></li>
</ul>
<span>Hand Crafted with <span>♥</span> in India by <a href="https://goyalshivam.com" target="_blank">Shivam Goyal</a></span>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>