-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 878 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
<!DOCTYPE html>
<html>
<head>
<title>Food Picker</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<style>
td { color: black; border: thin solid transparent; }
table { font-size: large; margin-top: 5em; }
div { position: fixed; top: 1ex; right: 1ex; margin-left: 1ex; padding: 0.5ex; font-size: x-large; background-color: white; border: thin solid #CCC; }
input[type=text] { width: 5ex; font-size: inherit; text-align: right; }
</style>
<script src="js/interactivity.js" defer></script>
</head>
<body>
<div><input type="text" id="RunningTotal" value="0"> kcal of <input type="text" id="GoalCals" value="1300"> daily goal and <input type="text" id="MaxCals" value="1490"> hard limit</div>
<table id="FoodChoices">
<thead>
<th></th>
<th>kcal</th>
<th>Food</th>
</thead>
<tbody>
</tbody>
</table>
</body>
</html>