-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (42 loc) · 1.22 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="public/js/physicsjs-full-0.5.4.js"></script>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="public/js/lodash.min.js"></script>
<script src="public/js/alife_sim_0.1.js"></script>
<script src="public/js/bootstrap.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="public/js/colorbrewer.js"></script>
<link href="public/css/bootstrap.css" rel="stylesheet">
<style>
body {
font: 100%/1.3 'Quattrocento Sans', sans-serif;
background-color: #111;
margin: 0;
color: 'white';
}
a {
color: #b00;
}
.viewport {
display: block;
margin: 4em auto;
border: 5px solid #4C575C;
border-radius: 5px;
}
</style>
</head>
<div class="navbar navbar-inverse navbar-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">Web Artificial Life '14</a>
</div>
<div class="navbar-right">
<a><h5>Connections: <span id="connection_badge" class="badge">1</span></a>
</div>
</div>
</div>
<canvas id="viewport1" class="viewport" width="300" height="300"></canvas>
</body>
</html>