-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (73 loc) · 2.44 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
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
<!DOCTYPE html>
<html>
<head>
<title>Lunch Tracker v1.0</title>
<link type="text/css" rel="stylesheet" href="style.css"/>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js" async></script>
<script language="JavaScript" type="text/javascript" src="https://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.min.js" async></script>
<script type="text/javascript" src="app.js" async></script>
</head>
<body>
<div class="header">
<img id="logo" src="http://photos.prnewswire.com/prn/20151014/276726LOGO"/>
<h1>
Lunch Tracker v1.0
</h1>
<img id="hotdog" src="http://union.fsu.edu/up/wp-content/uploads/2012/03/lunch-time-michael-ledray.jpg"/>
</div>
<p>
501 Boylston St. Boston, MA
</p>
<div class="content">
<div id="left">
<table>
<tr>
<td>Bacco's</td>
<td id="1">1</td>
<td class="recordRow"><button type="button" class="record">Record a visit</button> </td>
</tr>
<tr>
<td>Back Bay Sandwich </td>
<td id="2"> 1</td>
<td class="recordRow"><button type="button" class="record">Record a visit</button> </td>
</tr>
<tr>
<td>Boloco</td>
<td id="3">1</td>
<td class="recordRow"><button type="button" class="record">Record a visit</button> </td>
</tr>
<tr>
<td>Chicken and Rice Guys</td>
<td id="4">1</td>
<td class="recordRow"><button type="button" class="record">Record a visit</button> </td>
</tr>
<tr>
<td>Chipotle</td>
<td id="5">1</td>
<td class="recordRow"><button type="button" class="record">Record a visit</button> </td>
</tr>
<tr>
<td>Cosi</td>
<td id="6">1</td>
<td class="recordRow"><button type="button" class="record">Record a visit</button> </td>
</tr>
<tr>
<td>Rebecca's</td>
<td id="7">1</td>
<td class="recordRow"><button type="button" class="record">Record a visit</button> </td>
</tr>
<tr>
<td>Viga</td>
<td id="8">1</td>
<td class="recordRow"><button type="button" class="record">Record a visit</button> </td>
</tr>
</table>
</div>
<div id="right">
<div id="piechart" style="width: 900px; height: 500px;"></div>
</div>
</div>
<p id="date">
</p>
</body>
</html>