-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (49 loc) · 1.63 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Joke-a-tron 9000</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" rel="stylesheet">
<link href="app.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>🤖 Joke-a-tron 9000 🤖</h1>
<div class="row">
<div class="six columns">
<p>Psst. I know a joke about...</p>
<ul id="jokes-menu"></ul>
</div>
<div class="six columns">
<label>Tell me the joke about:</label>
<input id="requested-joke" type="text" class="u-full-width">
<div id="joke-box"></div>
</div>
</div>
<hr>
<div class="row">
<div class="six columns">
<h2>Teach me a new joke 🤓</h2>
<label>The joke is about:</label>
<input id="rememberJoke" type="text" class="u-full-width">
<label>The setup is:</label>
<textarea id="setup" class="u-full-width"></textarea>
<label>The punchline is:</label>
<textarea id="punchline" class="u-full-width"></textarea>
<button id="remember" class="u-full-width">
Remember this joke!
</button>
</div>
<div class="six columns">
<h2>Erase my memory 😢</h2>
<label>I don't like the joke about:</label>
<input id="forgetJoke" type="text" class="u-full-width">
<button id="forget" class="u-full-width">
Forget about it!
</button>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>