forked from trevlovett/NodeTracer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (22 loc) · 936 Bytes
/
index.html
File metadata and controls
23 lines (22 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>(non) NodeTracer</title>
<!-- Date: 2012-02-28 -->
<script type="text/javascript" charset="utf-8">
// noop
var require = function(){};
</script>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'></script>
<script type='text/javascript' src='boids.js'></script>
<link rel="stylesheet" href="browser-nodetracer.css" type="text/css" charset="utf-8">
<script src="nodetracer.js" type="text/javascript" charset="utf-8"></script>
<script src="browser-nodetracer.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="nodeTracer"></div>
<p class="fixed-info">Arrow Keys to move.<br>Shift+up / Shift+down to change altitude.</p>
</body>
</html>