-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.39 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.39 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
<!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/index.css" />
<link rel="stylesheet" href="./assets/button.css" />
</head>
<body>
<header>
<img id="logo" src="./assets/epicode_logo.png" alt="logo" />
</header>
<main>
<h1>Welcome to <br /><span>your exam</span></h1>
<h2><span>Instructions</span></h2>
<p>
We don't expect most engineers to know the answers to all of these
<br />
questions, so don't worry if you're unsure of a few of them.
</p>
<ul>
<li>
Each question is <span>timed</span> and can only be
<span>answered once.</span>
</li>
<li>
Changing browser tab or opening other windows will
<span>invalidate the question.</span>
</li>
<li>This exam will take approx. <span>0-5 minutes.</span></li>
</ul>
</main>
<footer>
<form action="./difficulty.html">
<p>
<input id="radio-btn" type="checkbox" required />
<span>I promise to answer myself without help from anyone</span>
</p>
<button id="procedi">PROCEED</button>
</form>
</footer>
</body>
</html>