forked from shinenelson/AngelHack-FoodCheckInApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
day.html
29 lines (28 loc) · 1.4 KB
/
day.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
<!DOCTYPE HTML>
<head>
<title>Food check-in | AngelHack Kochi</title>
<meta name="author" content="shine" />
<meta name="description" content="Food check-in app for AngelHack Kochi" />
<link rel="stylesheet" type="text/css" href="css/css-reset.css" />
<link rel="stylesheet" type="text/css" href="css/checklist-styles.css" />
<script type="text/javascript" src="js/day.js"></script>
<script type="text/javascript" src="js/jquery-1.10.2.js"></script>
<script type="text/javascript" src="js/jquery-ui.js"></script>
</head>
<body>
<img id="logo" alt="angelhack-logo" src="img/angelhack-logo-only.png" />
<div id="ahk">
<img id="wordmark" alt="angelhack-wordmark" src="img/angelhack-wordmark_smokegray.png" />
<h1 id="kochi">kochi</h1>
</div>
<h1 id="date">Day <script> document.write(dayno); </script> <br>
<script> document.write(d8); </script></h1>
<h1 id="name">Anirudhan Adukkathayar</h1>
<h3 id="reg">1234567890</h3> <br>
<div id="bf"><input class="food" type="checkbox"><strong>Breakfast</strong></input></div>
<div id="lunch"><input class="food" type="checkbox"><strong>Lunch</strong></input></div>
<div id="tea"><input class="food" type="checkbox"><strong>Tea/Snacks</strong></input></div>
<div id="dinr"><input class="food" type="checkbox"><strong>Dinner</strong></input></div>
<a href="home.html"><img id="next" alt="next" src="img/next_btn.png" /></a>
</body>
</html>