forked from RhonaON/conspiracy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (34 loc) · 1.55 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=1">
<title>Conspiracy Theory Generator!</title>
<link href="https://fonts.googleapis.com/css?family=Rye&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="normalise.css" />
<link rel="stylesheet" href="index.css" />
</head>
<body>
<main class="main">
<header class="header">
<h1 class="header__title">
WAKE UP 🐑 <br /> Spin the conspiracy wheels <br /> and learn the TRUTH!!
</h1>
</header>
<div class="pinwheels">
<img class="pinwheels__pinwheel" src="pinwheel.png" alt="Colourful pinwheel" title="Conspiracy Pinwheel" id="pinwheel-beginning" />
<img class="pinwheels__pinwheel" src="pinwheel.png" alt="Colourful pinwheel" title="Conspiracy Pinwheel" id="pinwheel-middle" />
<img class="pinwheels__pinwheel" src="pinwheel.png" alt="Colourful pinwheel" title="Conspiracy Pinwheel" id="pinwheel-end" />
</div>
<div class="conspiracy">
<div class="conspiracy__theory" id=theory-beginning></div>
<div class="conspiracy__theory" id=theory-middle></div>
<div class="conspiracy__theory" id=theory-end></div>
</div>
<div class="spinner">
<button class="spinner__button" onclick="displayTheory()">Spin</button>
</div>
</main>
<script src="index.js"></script>
</body>
</html>