-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (85 loc) · 4.05 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
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>UofA Bootcamp Coding Quiz</title>
<link rel="apple-touch-icon" sizes="180x180"
href="assets/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32"
href="assets/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16"
href="assets/images/favicon-16x16.png">
<link rel="manifest" href="assets/images/site.webmanifest">
<link rel="stylesheet" href="assets/css/reset.css" />
<link rel="stylesheet" href="assets/css/colors.css"/>
<link rel="stylesheet" href="assets/css/style.css"/>
</head>
<body>
<header>
<div class="header-container">
<h1>UofA Bootcamp Coding Quiz</h1>
<img src="./assets/images/logo-header.png" alt="Picure of
Eduarda">
</div>
</header>
<div id="page-container">
<div id="content-wrap">
<section id="home">
<article>
<a href="./scores.html">View Ranking</a>
<h2>Welcome to Bootcamp Coding Quiz !</h2>
<div>
<p id="text-area" readonly class="text-area"
aria-label="Info"></p>
</div>
<!-- Add dropdown menu with 3 items html, css and javascript -->
<!-- <p>Please select the quiz that you would like:</p> -->
<ol>
<select id="quiz-select" name="quiz-select">
<option>-- Subject --</option>
<option class="option" value="html">HTML</option>
<option class="option" value="css">CSS</option>
<option class="option" value="js">JavaScript</option>
</select>
<label for="quiz-select">Select</label>
<!-- Add checkboxes for beginner, intermediate and expert leves in horizontal container-->
<div class="checkbox-container">
<div class="checkbox">
<input type="checkbox"
class="difficulty-checkbox"
id="beginner" value="beginner"
checked>
<label for="beginner">Beginner</label>
</div>
<div class="checkbox">
<input type="checkbox"
class="difficulty-checkbox"
id="intermediate"
value="intermediate">
<label for="intermediate">Intermediate</label>
</div>
<div class="checkbox">
<input type="checkbox"
class="difficulty-checkbox"
id="expert" value="expert">
<label for="expert">Expert</label>
</div>
</div>
</ol>
</article>
</section>
</div>
</div>
<footer>
<div class="footer-container">
<h3>
<a href="mailto:[email protected]">Made by Daniel
Flores © 2022</a>
</h3>
</div>
</footer>
<script src="./assets/js/script.js"></script>
</body>
</html>