-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdifficulty.html
More file actions
42 lines (41 loc) · 1.22 KB
/
difficulty.html
File metadata and controls
42 lines (41 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./assets/reset.css" />
<link rel="stylesheet" href="./assets/difficulty.css" />
<link rel="stylesheet" href="./assets/button.css" />
</head>
<body>
<header>
<img id="logo" src="./assets/epicode_logo.png" alt="logo" />
</header>
<main>
<form action="./quiz.html">
<h1>
Choose the difficulty <br />
of the exam
</h1>
<div id="container" list="browsers">
<p id="tendina">Select here</p>
<input
name="difficulty"
type="text"
style="display: none"
id="hidden-tendina"
/>
<ul class="options">
<li data-value="easy">Easy 5</li>
<li data-value="medium">Medium 10</li>
<li data-value="hard">Hard 15</li>
<li data-value="stefano">Stefano 15 + 5s timer</li>
</ul>
<button id="procedi">CHOOSE</button>
</div>
</form>
</main>
<script src="./scripts/difficulty.js"></script>
</body>
</html>