-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (41 loc) · 1.29 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
<!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="style.css">
</head>
<body>
<input type="radio" name="len" id="length" value="length">
<input type="radio" name="len" id="lenght" value="lenght">
<input type="radio" name="wid" id="width" value="width">
<input type="radio" name="wid" id="widht" value="widht">
<input type="radio" name="hei" id="heigth" value="heigth">
<input type="radio" name="hei" id="height" value="height">
<main>
<header>
<h1> Veja o seu nível de conhecimento de programação </h1>
<h2> Se você escolher corretamente abaixo, já é master </h2>
</header>
<section id="answers">
<div id="ansLen" class="ans">
<label for="length">.length</label>
<label for="lenght">.lenght</label>
</div>
<div id="ansWid" class="ans">
<label for="width">.width</label>
<label for="widht">.widht</label>
</div>
<div id="ansHei" class="ans">
<label for="heigth">.heigth</label>
<label for="height">.height</label>
</div>
</section>
<section id="congrats">
Congrats!You are a senior.
</section>
</main>
</body>
</html>
</html>