-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (46 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>StackOverflow Hat Rack - Top Answerers and Askers</title>
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/beepboop.js"></script>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/skeleton.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway:400,300,600" />
<link rel="stylesheet" href="css/digital_style.css" />
</head>
<body>
<div class="section">
<div class="container">
<h1 class="section-heading">Stack Overflow Hat Rack</h1>
<p class="section-description">Use the <a href="https://api.stackexchange.com/docs">Stack Overflow API</a> to display the most active users for a given tag.</p>
<div id="search">
<form>
See statistics for tag:
<input type="text" id="tag" placeholder="e.g. jquery">
<input type="submit">
</form>
</div>
</div>
</div>
<div id="loading" class="section loading" style="display:none">
</div>
<div id="results" style="display:none" class="section">
<div class="container">
<h2 class="section-heading" id="display_tag"></h1>
<div class="row">
<div class="one-half column" id="top-answerers">
<h3>Top Answerers</h3>
</div>
<div class="one-half column" id="top-askers">
<h3>Top Askers</h3>
</div>
</div>
<p>See more information on <a id="SO_Link">StackOverflow</a>
</div>
</div>
<div class="section">
This application is part of the <a href="https://labhr.github.io" target="_blank">LABHR</a> project.
</div>
</body>