-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
46 lines (43 loc) · 2.33 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<meta id="viewport" name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<title>Is This Bike Stolen?</title>
<link rel="stylesheet" href="iphone/stylesheets/iphone.css" />
<link rel="apple-touch-icon" href="iphone/images/apple-touch-icon.png" />
<link href="css/bike.css" type="text/css" rel="stylesheet" media="screen, print, handheld">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript" language="javascript"></script>
<script src="js/bike.js" type="text/javascript" language="javascript"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20088605-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="header">
<h1>Is This Bike Stolen?</h1>
</div>
<div id="container">
<p>This tool was originally created by a keen team of developers at the Random Hacks of Kindness / Open Data Hackathon on December 5-6 2010 in Toronto. </p>
<br/>
<p>In no particular order:<br/>
Jon Pipitone <a href="mailto:[email protected]">[email protected]</a><br/>
Ben Shymkin <a href="mailto:[email protected]">[email protected]</a><br/>
Amber Ellis <a href="mailto:[email protected]">[email protected]</a><br/>
John Taranu <a href="mailto:[email protected]">[email protected]</a><br/>
Stu Basden <a href="mailto:[email protected]">[email protected]</a><br/>
Jason Montojo <a href="mailto:[email protected]">[email protected]</a><br/>
</p>
<br/>
<strong>Standard Disclaimer</strong>
<p>No warranty, either express or implied, is made with respect to the information contained herein. We are not responsible for any loss, inconvenience, damage (whether special or consequential) or claims arising out of the use of the information contained on this site. </p>
</div>
</body>
</html>