-
Notifications
You must be signed in to change notification settings - Fork 0
/
exercicio01.html
39 lines (34 loc) · 1.21 KB
/
exercicio01.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nacionalidade</title>
<style>
body {
background: black;
color: white;
font: normal 17pt Arial;
}
</style>
</head>
<body>
<h1>Identificação de Nacionalidade</h1>
Digite o nome do seu país de origem: <input type="text" name="txtpaís" id="txtpaís" >
<input type="button" value="Selecionar" onclick="verificação()">
<div id="resposta"></div>
<script>
function verificação() {
let inputPaís = window.document.getElementById('txtpaís'); // Recebe o input.
let resposta = window.document.querySelector('div#resposta'); // Recebe a div.
let país = (inputPaís.value) // Recebe o valor da variável 'inputPaís', no caso, o que o usuário inserir.
if (país == 'Brasil') {
resposta.innerHTML = '<p>Você é <strong>brasileiro!</strong></p>'
} else {
resposta.innerHTML = '<p>Você é <strong>estrangeiro!</strong></p>'
}
}
</script>
</body>
</html>