-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (62 loc) · 2.43 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
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<title>Personality Quiz Starter Code</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css">
<!-- import the webpage's javascript file -->
<script src="/script.js" defer>
</script>
</head>
<body>
<header>
<center><h1>What Type of Programmer are You? Quiz</h1></center>
<center> <p>Answer the questions to the best of your abiliy. But the most important thing is to have fun!</p> </center>
</header>
<main>
<center><h2>What is favorite coding language?</h2></center>
<div class="question">
<div class="answer-choice">
<img src="assets/i-know-python.jpg" alt="A striped black and white cat sitting upright with folded arms" class="center">
<br>
<button id="q1a1">Python</button>
</div>
<div class="answer-choice">
<img src="assets/Javascript meme.jpg" alt="A striped black and white cat sitting upright with folded arms" class="center">
<br>
<button id="q1a2">Javascript</button>
</div>
</div>
<center><h2>Are you an expert or novice at programming?</h2></center>
<div class="question">
<div class="answer-choice">
<img src="assets/I'm a noob.jpg" alt="A striped black and white cat sitting upright with folded arms" class="center">
<br>
<button id="q2a1">I'm new</button>
</div>
<div class="answer-choice">
<img src="assets/I don't use debuggers.png" alt="A striped black and white cat sitting upright with folded arms" class="center">
<br>
<button id="q2a2">I'm an expert</button>
</div>
</div>
<center><h2>What is your third question?</h2></center>
<div class="question">
<div class="answer-choice">
<img src="assets/cat.jpg" alt="A striped black and white cat sitting upright with folded arms" class="center">
<br>
<button id="q3a1">Question 3 Answer 1</button>
</div>
<div class="answer-choice">
<img src="assets/cat.jpg" alt="A striped black and white cat sitting upright with folded arms" class="center">
<br>
<button id="q3a2">Question 3 Answer 2</button>
</div>
</div>
<center><h2 id="result">Your result is...</h2></center>
</main>
</body>
</html>