-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.HTML
70 lines (68 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script.js" defer></script>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
<style>
body {
background-image: url('/Images/backgroundImageMarioQuiz.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
</style>
<title>(10) Mario Quiz</title>
</head>
<body>
<main class="mainContainer">
<!-- Container for Header -->
<div class="headerContainer" data-header-container>
<header>
<h1>How Well Do You Know Mario?</h1>
<h2>Do your best to answer ten questions about the Mario Franchise!</h2>
</header>
</div>
<!-- Container for Image -->
<div class="imageContainer">
<img src="https://i.giphy.com/media/JcFUHp7b9mnj5a01AN/giphy.webp" alt="Mario" id="imageContainer" width="386px" height="386px">
</div>
<!-- Container for Quiz Information -->
<div class="questionContainer hide" data-question-container>
<p>
<span class="questionNumber" data-question-number>Number</span>
<span class="questionText" data-question-text>This is a Question</span>
</p>
</div>
<!-- Container for Quiz Answers -->
<div class="answerContainer">
<div class="usersCurrentProgress hide" data-current-progress></div>
<div class="answerButtons" data-display-answers></div>
</div>
<!-- Container for Quiz Controls -->
<div class="controlButtonContainer" data-control-button-container>
</div>
<!-- Container for Quiz Results -->
<div class="finalResults" id="finalResults">
</div>
<!-- Container for Crediting -->
<div class="creditContainer">
<footer>
<p>
Created By: Justin Shawn
Github: <a href="https://github.com/JPannn">JPannn</a>
</p>
<p>
All Images and Content Belong to <a href="https://www.nintendo.com/">Nintendo!</a>
and <a href="https://giphy.com/gifs/rabbids-mario-rabbids-rabbid-rosalina-luma-JcFUHp7b9mnj5a01AN">@rabbids</a> on Giphy
</p>
</footer>
</div>
</main>
</body>
</html>