-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 1.09 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
<html>
<head>
<title>Graph visualization</title>
<link rel="stylesheet" type="text/css" media="all" href="stylesheet.css"></style>
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="bar" class="guibox">
<form onsubmit="return false">
Search: (currently username only) <input type="text" id="search">
</form>
</div>
<div id="titlebox" class="guibox">
<p>
Exeter Connected
</p>
</div>
<div id="legend" class="guibox">
Legend:
</div>
<div id="welcome">
<div id="vertical">
<div id="horizontal">
<div id="title">Exeter Connected</div>
<div>
An interactive visualization and exploration of the Phillips Exeter Academy Community
</div>
<div id="progress">[ ]</div>
<br>
<br>
<span id="now">
[click here to watch it initialize...]
</span>
<div id="version">v0.11</div>
</div>
</div>
</div>
<script src="./vis.js"></script>
</body>
</html>