-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
85 lines (66 loc) · 2.18 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<title>Name Your JS</title>
<link rel="icon" type="image/png" href="favicon.ico" />
<link href='http://fonts.googleapis.com/css?family=Vollkorn:700italic,400|Droid+Sans' rel='stylesheet' type='text/css'>
<link rel="StyleSheet" href="css/reset.css" type="text/css" media="screen">
<link rel="StyleSheet" href="css/skeleton.css" type="text/css" media="screen">
<link rel="StyleSheet" href="css/style.css" type="text/css" media="screen">
</head>
<body>
<header class="header">
<div class="container sixteen columns">
<h1>{ wut }.js</h1>
</div>
</header>
<div class="container">
<h2>Trouble naming your new JavaScript library?</h2>
<div id="button" class="button">Name That Thing</div>
<div id="name"></div>
<div id="votes">
<div class="vote-arrow"><img id="up" src="img/upvote.png" /></div>
<div id="rating"></div>
<div class="vote-arrow"><img id="down" src="img/downvote.png" /></div>
</div>
<div class="four columns row">
<h3 class="stat-header">
Last
<img id="last-loader" class="loader" src="img/ajax-loader.gif" />
</h3>
<div class="stat-column">
<ol id="history"></ol>
</div>
</div>
<div class="four columns row">
<h3 class="stat-header">
Best
<img id="best-loader" class="loader" src="img/ajax-loader.gif" />
</h3>
<div class="stat-column">
<ol id="top10"></ol>
</div>
</div>
<div class="four columns row">
<h3 class="stat-header">
Worst
<img id="worst-loader" class="loader" src="img/ajax-loader.gif" />
</h3>
<div class="stat-column">
<ol id="bottom10"></ol>
</div>
</div>
<div class="four columns row">
<h3 class="stat-header">
Random
<img id="random-loader" class="loader" src="img/ajax-loader.gif" />
</h3>
<div class="stat-column">
<ol id="random10"></ol>
</div>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="js/doit.js"></script>
</body>
</html>