-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (73 loc) · 2.98 KB
/
Copy pathindex.html
File metadata and controls
89 lines (73 loc) · 2.98 KB
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
85
86
87
88
89
<!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">
<title>Martin Coding Quiz</title>
<link rel = "stylesheet" href = "style.css">
</head>
<body>
<div id = "HiScores">
<b href="#" class="HiScoreButton">High Scores</b>
</div>
<div id = "Countdown"></div>
<div id = "Intro">
<h1>Welcome to the coding quiz! Today we will test your knowledge on basic web-based programming topics! Good luck!</h1>
</div>
<div id = "GameOver">
<h1>Game Over!</h1>
</div>
<div id = "YourScore">
<h1></h1>
</div>
<div id = "Q1">
<h1>Which of these is NOT a tool used in web development?</h1>
<ul>
<li id = "Q1wrong1"><a href = "#">JavaScript</a></li>
<li id = "Q1wrong2"><a href = "#">CSS</a></li>
<li id = "Q1wrong3"><a href = "#">HTML</a></li>
<li id = "Q1correct"><a href = "#">Oracle</a></li> <!--Correct Answer-->
</ul>
</div>
<div id = "Q2">
<h1>Which function is written correctly to display ABC?</h1>
<ul>
<li id = "Q2wrong1"><a href = "#">console.log["ABC"]</a></li>
<li id = "Q2correct"><a href = "#">console.log("ABC")</a></li> <!--Correct Answer-->
<li id = "Q2wrong2"><a href = "#">consolelog("ABC")</a></li>
<li id = "Q2wrong3"><a href = "#">console.log('ABC')</a></li>
</ul>
</div>
<div id = "Q3">
<h1>Which of these web browsers is developed by Google?</h1>
<ul>
<li id = "Q3correct"><a href = "#">Chrome</a></li> <!--Correct Answer-->
<li id = "Q3wrong1"><a href = "#">FireFox</a></li>
<li id = "Q3wrong2"><a href = "#">Edge</a></li>
<li id = "Q3wrong3"><a href = "#">Safari</a></li>
</ul>
</div>
<div id = "Q4">
<h1>What is the name of the text file used to explain code functionality?</h1>
<ul>
<li id = "Q4wrong1"><a href = "#">HelpGuide</a></li>
<li id = "Q4correct"><a href = "#">ReadMe</a></li> <!--Correct Answer-->
<li id = "Q4wrong2"><a href = "#">HowTo</a></li>
<li id = "Q4wrong3"><a href = "#">FAQ</a></li>
</ul>
</div>
<div id = "Q5">
<h1>Which terminal command sends code to a Git Repo?</h1>
<ul>
<li id = "Q5wrong1"><a href = "#">Commit</a></li>
<li id = "Q5wrong2"><a href = "#">Load</a></li>
<li id= "Q5correct"><a href = "#">Push</a></li> <!--Correct Answer-->
<li id = "Q5wrong3"><a href = "#">Clear</a></li>
</ul>
</div>
<button id="Start">Start the Quiz</button>
<button id="Reload">Reload the Quiz</button>
<script src = script.js></script>
</body>
</html>