-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselect.html
47 lines (47 loc) · 1.75 KB
/
select.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
<!DOCTYPE html>
<html lang="de">
<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">
<link rel="icon" href="data:;base64,=">
<link rel="stylesheet" href="css/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=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<title>Quiz</title>
</head>
<body>
<div class="page">
<div class="pagecontainer header">
<header>
<h1><span>Q</span>UIZ</h1>
<p>by Christoph Merck</p>
</header>
</div>
<div class="selectBar">
<select name="Theme" id="selectTheme">
<option value="" disabled selected>Select Theme</option>
<option value="java">Java</option>
<option value="it">Internet-Technology</option>
</select>
<select name="Chapter" id="selectChapter">
<option value="" disabled selected>Select Chapter</option>
<option value="basics">Basics</option>
<option value="html">HTML</option>
<option value="css">CSS</option>
</select>
</div>
<div class="pagecontainer main">
<main>
<div class="actionMessage">
Please select a Theme and Chapter
</div>
</main>
</div>
<div class="pagecontainer footer">
<footer>© 2021 by Christoph Merck</footer>
</div>
</div>
</body>
</html>