-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (63 loc) · 1.96 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
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Evil site</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<header>
<nav class="leftnav">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./pages/fame.html">Hall of Fame</a></li>
<li><a href="./pages/god.html">Become God</a></li>
</ul>
</nav>
<div>
YOU DARE TRESSPASS INTO MY DOMAIN?
</div>
<nav class="rightnav">
<a href="./pages/mono.html">The smiling man</a>
</nav>
</header>
<section>
<h1>The site awakens</h1>
<h2>Chapter 1: A boy and his horse</h2>
<br/>
<p>
Horses aren't real you <em><a href="https://www.youtube.com/watch?v=xvFZjo5PgG0" class="evil">fool</a></em>.<br/>
<strong>But I am.</strong><br/><br/>
I am also:
<ul> <!--unordered list-->
<li>cool</li>
<li>bold</li>
<li>sexy</li>
</ul>
<br/>
Now here are some things you're gonna do:
<br/><br/>
<ol> <!--Ordered list-->
<li>Pledge allegiance to the church of death</li>
<li>100 pushups</li>
<li>A barrel roll</li>
</ol>
<br/>
<button onclick="claimSoul()" class="soulButton">Pledge allegiance</button>
</p>
</section>
<footer class="hell">
Fire of hell
</footer>
<script>
function claimSoul(){
alert("Soul claimed!")
document.querySelector(".soulButton").onclick = soulClaimed; // change behaviour of button
}
function soulClaimed(){
alert("Your soul has already been claimed!")
}
</script>
</body>
</html>