-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (54 loc) · 1.93 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'>
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
<title>Question asker</title>
<meta content='Answer questions about stuff' name='description'>
<meta content='Bill Ramsey' name='author'>
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
<link href="./stylesheets/style.css" media="all" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container">
<h1>Question Asker</h1>
<div id="list">
<h2>Enter a list of stuff to answer a question about below.</h2>
<textarea id="list_area" autofocus></textarea>
<input id="list_action" type="button" class="btn" value="Done. Now what?">
</div>
<div id="question">
<h2>What is the question?</h2>
<input id="question_input" type="text" autofocus />
<input id="question_action" type="button" class="btn" value="Cool, let's answer it!" />
</div>
<div id="answer">
<h2 class="question">Have I seen this?</h2>
<h1 id="item">Star Wars</h1>
<input id="yes_action" type="button" class="btn answer" value="Yes" />
<input id="no_action" type="button" class="btn answer" value="No" />
<input id="undo" type="button" class="btn answer" value="Undo" />
<p><br>
<quiet>Press 'y', 'n', or 'u' as a short cut.</quiet>
</p>
</div>
<div id="results">
<h2 class="question">Have I seen this?</h2>
<div id="yes">
<h3>Yes</h3>
<textarea id="yes_area"></textarea>
</div>
<div id="no">
<h3>No</h3>
<textarea id="no_area"></textarea>
</div>
</div>
<footer>
<quiet>Made by <a href="http://billiamram.com" target="_blank">Bill Ramsey</a> (<a href="http://twitter.com/billiamram" target="_blank">@billiamram</a>).</quiet>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="js/questions.js"></script>
</body>
</html>