-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathindex.html
58 lines (53 loc) · 1.21 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
<!doctype html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1>
Traverse and Manipulate
</h1>
<p>
<em>Admirable objectives for a jQuery Padwan</em>
</p>
</header>
<div class="info-box sad">
<h4>
Upcoming traversals:
</h4>
</div>
<main>
<h2>
Input your Story
</h2>
<div class="input-form">
<form action="/uh-oh">
<input type="text" placeholder="Tell me a story!">
<input type="submit" value="Submit!">
</form>
</div>
<div class="suggested-topics">
<h3>
Suggested Topics
</h3>
<ul>
<li>Funny functions</li>
<li>Terrible traversals</li>
<li class="sad">Cogent collisions</li>
<li class="super-duper sad">Super selections</li>
<li>Massive manipulations</li>
<li>Admirable alterations</li>
<li>...</li>
<li>Killer klicks</li>
</ul>
</div>
</main>
<div id="annoying-popup" class="blink">
<a href="http://www.evilwebsite.com">
Click me to get free stuff!!!!
</a>
</div>
</body>
</html>