forked from albertyw/avenews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (39 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>
<head>
<meta charset="UTF-8">
<link rel="favicon" type="image/ico" href="image/favicon.ico" />
<link rel="stylesheet" type="text/css" href="include/index.css">
<link rel="stylesheet" type="text/css" href="include/style.css">
<script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyC_6b5_eiZuNKnqiBhADnfVinB2JB8BiL4&sensor=true"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.0/jquery-ui.min.js"></script>
<script type="text/javascript" src="include/initialize.js"></script>
<script type="text/javascript" src="include/article.js"></script>
</head>
<body>
<div id="title" class="center"><font size="7">AVENEWS</font></div>
<br>
<table class="center" cellpadding="10" cellspacing="0">
<tr>
<td id="map_cell">
<div id="googleMap" style="width:600px;height:450px;">
</div>
</td>
<td id="article_list_cell" class="noleftborder">
<div id="article_list_div">
<br /><br /><br />
<h3>Click a marker!<br />
↵</h3>
</div>
</td>
<td id="article_cell" class="noleftborder">
<iframe id="article_iframe"></iframe>
</td>
</tr>
</table>
<br>
<br>
<div id="credits" class="center"><a href="http://albertyw.mit.edu/">albertyw</a> & <a href="http://ironchefsynbio.wordpress.com">jencheng</a></div>
</body>
</html>