forked from vsc5/quiz2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz2.html
56 lines (51 loc) · 1.28 KB
/
quiz2.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">
<link href="./css/quiz2.css" rel="stylesheet">
</head>
<body>
<h1>Welcome To The Wonderful World of Debugging Code</h1>
<section id="mainSection">
<p>This is a paragraph, I promise.</p>
<ul class="links">
<li>
<a href="#">Link 1</a>
</li>
<li>
<a href="#">Link 2</a>
</li>
<li>
<a href="#">Link 487</a>
</li>
</ul>
</section>
<p>I am a lonely paragraph, with no immediate parent.</p>
<section id="secondarySection">
<p>Woop woop!!!</p>
<p>See how elegantly we're spaced out?</p>
<p>Yeah, we're spaced out alright.</p>
<ol>
<li>I'm like an unordered list</li>
<li>But I'm more orderly<li>
<li>That was a really bad joke.</li>
<ol>
</section>
<section id="mahAccordian">
<div id="accHeader">This is the accordian header. Click to <span>close<span>.</div>
<div id="accBody">
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
</div>
</section>
<button id="fader">FADE ME!!</button>
<button id="randomizer">RANDOMIZE ME!!</button>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="./js/quiz2.js"></script>
</body>
</html>