-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (30 loc) · 1.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Alert Birds</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://js.pusherapp.com/1.9/pusher.min.js"></script>
<script type="text/javascript" src="static/js/soundmanager2.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script type="text/javascript" src="static/js/chirp.js"></script>
<link type="text/css" rel="stylesheet" href="static/css/style.css">
</head>
<body>
<div class="content">
<div class="header">
<img src="static/images/alertbirds_logo.png" class ="alert_logo" />
<div class="powered_by_wrapper">
<p>Powered by</p>
<a href="http://www.loggly.com"><img src="static/images/loggly_logo.png" class="loggly_logo" /></a>
</div>
</div>
<table class="bird_wrapper">
<tr>
<td><img src="static/images/redbird.png" class="squawk" id="redbird" /></td>
<td><img src="static/images/whitebird.png" class="squawk"id="whitebird" /></td>
<td><img src="static/images/drunkbird.png" class="squawk" id="drunkbird" /></td>
</tr>
</table>
</div>
</body>
</html>