-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
34 lines (30 loc) · 1.43 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
<!DOCTYPE HTML>
<html>
<head profile="http://www.w3.org/2005/10/profile">
<title>Word Galaxy</title>
<style>
body { overflow: hidden; margin: 0; padding: 0;}
.header {background-color:black; color:gray; font-family:"Trebuchet MS", Helvetica, sans-serif; height: 25px; padding:5px;}
.header a {color:gray;}
.search-container {float:right;}
</style>
<script src="js/pixi.js"></script>
<script src="js/bundle.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-38185442-3', 'auto');
ga('send', 'pageview');
</script>
<link rel="icon" type="image/ico" href="img/favicon.ico">
<meta property="og:image"
content="http://anthonygarvan.github.io/wordgalaxy/img/wordgalaxy.jpg" />
<meta property="og:image:type" content="image/jpeg" />
</head>
<body onload='ngraph.main()'>
<div class="header">Word Galaxy: An Interactive Map of English. Learn more <a href="http://www.anthonygarvan.com">here</a>. By Anthony Garvan. <div class="search-container"><form id="search-form"><input id="search-term" type="text" name="search"><input type="submit" value="search"></form></div></div>
<div id="galaxy"></div>
</body>
</html>