-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
36 lines (35 loc) · 1.37 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rep Builder</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<div class="intro">
<div class="left stack-image"></div>
<div class="explanation">
<h1>StackOverflow Reputation Builder</h1>
<p>This app lets you search by topic for unanswered questions on Stack Overflow to help you build your reputation. Find unanswered questions for a topic you know about, write quality answers, and watch your reputation go up.</p>
<p>Sometimes, you also need some inspiration. This page also lets you search for the top answerers for a tag. If you want to rise to the top ranks for a topic, see how many reputation points you'll need to aim for!</p>
</div>
</div>
<hr>
<div class="stack">
<h3>Get Unanswered Questions</h3>
<p>Find unanswered questions by tag. For multiple tags, use a semi-colon to separate.</p>
<form id="unanswered-getter">
<input type="text" placeholder='e.g., "HTML" or "HTML;CSS"' id="tags"name="tags" size="30" autofocus required>
<input type="submit" value="Submit">
</form>
<!-- <h3>View the Top Answerers for a Tag Bonus Challenge</h3>-->
</div>
<div class="results-container">
<div id="search-results"></div>
<div id="results"></div>
</div>
</div>
<script src="js/answerApp.js"></script>
</body>
</html>