-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
44 lines (34 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Karla-Alan-Quiz</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="jquery.js"></script>
<script type="text/javascript" defer src = "main.js"></script>
</head>
<body>
<header>
<h1></h1>
</header>
<button id ="start"></button>
<main class="decoo">
<div id= 'question' class= 'deco'>
<h3 class = 'qst'>here will be the question</h3>
<ul id = "answers">
<li class = "answer1 ans deco" ></li>
<li class = "answer2 ans deco" ></li>
<li class = "answer3 ans deco" ></li>
</ul>
<img id ="monkey1" class="monk" src="https://2.bp.blogspot.com/-S0fFka6A4vE/WLojzomGEfI/AAAAAAANzHc/HJWE1Ui_OrQlNxhV6bEWNTLGyWWjmHu9wCLcB/s1600/AW386483_01.gif" >
<img id ="monkey2"class="monk" src="https://2.bp.blogspot.com/-E46xUM32mqQ/WhwcIrEXsyI/AAAAAAAN200/yZ1CjxpR8CEyjxnHZiWqo2soQAPN4BQVwCLcBGAs/s1600/AW648334_19.gif" >
</div>
<button id= 'confirm' class="btn deco">Next Question</button>
<button id = "finish" class = "btn deco">Finish</button>
<div id= 'reveal' class= 'deco'>
</div>
</main>
<footer>
</footer>
</body>
</html>