forked from ajgosling/wikipedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 848 Bytes
/
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
<!doctype html>
<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 class="content">
<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!">
<button id="start">GOGOGO</button>
<div id="error-message"></div>
<ul id="test"></ul>
<script src="./app/start_node.js"></script>
</div>
</div>
</body>
</html>