-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
94 lines (87 loc) · 3.47 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
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<title>Quiz | Você consegue acertar qual é o filme pelo título em português de Portugal?</title>
</head>
<body>
<div class="intro py-3 bg-primary text-center">
<div class="container">
<h2 class="text-light display-3 my-4">Quiz</h2>
</div>
</div>
<div class="quiz py-4 bg-dark">
<div class="container">
<h2 class="my-5 text-white">Você consegue acertar qual é o filme pelo título em português de Portugal?</h2>
<form class="quiz-form text-light">
<div class="my-5">
<p class="lead font-weight-normal">1. "O Mal Disposto" é o nome dado para o filme:</p>
<div class="form-check my-2 text-white-50">
<label class="form-check-label">
<input type="radio" name="inputQuestion1" value="A" checked>
Psicose
</label>
</div>
<div class="form-check my-2 text-white-50">
<label class="form-check-label">
<input type="radio" name="inputQuestion1" value="B">
Meu Malvado Favorito
</label>
</div>
</div>
<div class="my-5">
<p class="lead font-weight-normal">2. "O Aviso" é o nome dado para o filme de terror:</p>
<div class="form-check my-2 text-white-50">
<label class="form-check-label">
<input type="radio" name="inputQuestion2" value="A" checked>
O Grito
</label>
</div>
<div class="form-check my-2 text-white-50">
<label class="form-check-label">
<input type="radio" name="inputQuestion2" value="B">
O Chamado
</label>
</div>
</div>
<div class="my-5">
<p class="lead font-weight-normal">3. "Uma Família a Beira de um Ataque de Nervos" é o título de:</p>
<div class="form-check my-2 text-white-50">
<label class="form-check-label">
<input type="radio" name="inputQuestion3" value="A" checked>
Família do Bagulho
</label>
</div>
<div class="form-check my-2 text-white-50">
<label class="form-check-label">
<input type="radio" name="inputQuestion3" value="B">
Pequena Miss Sunshine
</label>
</div>
</div>
<div class="my-5">
<p class="lead font-weight-normal">4. "O Rei dos Gazeteiros" é o famoso filme:</p>
<div class="form-check my-2 text-white-50">
<label class="form-check-label">
<input type="radio" name="inputQuestion4" value="A" checked>
O Lobo de Wall Street
</label>
</div>
<div class="form-check my-2 text-white-50">
<label class="form-check-label">
<input type="radio" name="inputQuestion4" value="B">
Curtindo a Vida Adoidado
</label>
</div>
</div>
<div class="text-center">
<button class="btn bg-primary text-light">Enviar</button>
</div>
</form>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>