-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (36 loc) · 1.14 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
<!doctype html>
<meta charset="utf-8">
<html lang="en">
<head>
<title>Degrees of Wikipedia</title>
<link rel="stylesheet" type="text/css" href="./assets/index.css" media="screen" />
<!-- <script src="bundle.js"></script> -->
<!-- WTF Wikipedia -->
<script src="https://unpkg.com/wtf_wikipedia@latest/builds/wtf_wikipedia.min.js"></script>
<!-- D3 Graphing -->
<script src="https://d3js.org/d3.v4.min.js"></script>
</head>
<body>
<div id="top-bar" class="top-bar">
<div class="left-side">
<div class="inputs">
<input type="text" id="start-input" placeholder="Enter a start page!">
<input type="text" id="end-input" placeholder="Enter a goal page!">
</div>
<div class="start-bar">
<div>Filter</div>
<div>
<button id="begin">Begin</button>
</div>
</div>
<div id="middle">
I'm the middle!
</div>
<div id="error-message"></div>
<ul id="test"></ul>
<svg height="1000" width="960"class="wiki"></svg>
</div>
</div>
</body>
<script src="./app/start_node.js"></script>
</html>