-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
99 lines (87 loc) · 4.49 KB
/
quiz.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
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!-- Metas -->
<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="shortcut icon" href="assets/fonts/html5.png" type="image/x-icon">
<!-- Links-->
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="Style/global.css">
<link rel="stylesheet" href="Style/quiz.css">
<link rel="shortcut icon" href="assets/fonts/html5.png" type="image/png">
<title>Quiz de HTML</title>
</head>
<body>
<header>
<nav class="navigation">
<a href="index.html"><i class="icon-html5"></i></a>
</nav>
</header>
<main>
<div class="questions">
<div class="qustion1 flex">
<form action="" method="post">
<legend>A tag select é um elemento HTML5 que representa um controle de apresentação no menu. Essa afirmação é correta?</legend>
<div class="response margin">
<input type="radio"
name="question1"
id="certain1"><label for="question1">Sim, porque a tag select é usada para navegar pelos assuntos da pagina pelo menu. </label>
</div>
<div class="response">
<input type="radio"
name="question1"
id="wrong1"><label for="question1">Não, esses atributos não são de select.</label>
</div>
</form>
</div>
<div class="question2 flex">
<form action="" method="post">
<legend>A tag SPAN é um elemento para destacar determinado texto. Essa descrição está correta?</legend>
<div class="response margin">
<input type="radio"
name="question2"
id="certain2"><label for="question2">Sim, a tag span é utilizida para destacar um determinado texto, para que seja usado no CSS</label>
</div>
<div class="response">
<input type="radio"
name="question2"
id="wrong2"><label for="question2">Não, pois o CSS sozinho pode fazer já isso. </label>
</div>
</form>
</div>
<div class="question3 flex">
<form action="" method="post">
<legend>A tag MAIN define o conteúdo final da página. Essa afirmação é certa?</legend>
<div class="response margin">
<input type="radio"
name="question3"
id="wrong3"><label for="question3">Sim, essa afirmação está correta, pois tag MAIN traz o roda pé da página.</label>
</div>
<div class="response">
<input type="radio"
name="question3"
id="certain3"><label for="question3">Não, essa afirmação está errada, pois a tag MAIN traz o conteúdo principal da página.</label>
</div>
</form>
</div>
<div class="question4 flex">
<form action="" method="post">
<legend>A tag LINK só pode ser usada para linkar o CSS na página.</legend>
<div class="response margin">
<input type="radio"
name="question4"
id="wrong4"><label for="question4">Sim a tag LINK é utilizada para conectar o arquivo css a página web</label>
</div>
<div class="response ">
<input type="radio"
name="question4"
id="certain4"><label for="question4">Essa afirmação está incorreta, pois essa tag é usada para linkar o arquivo css, icone da página, entre outros arquivos.</label>
</div>
</form>
</div>
</div>
</main>
</body>
</html>