Olá, tudo bem?
Estou com problemas nesse exercício e não consigo identificar o erro. Poderiam me ajudar, por favor?
Desde já, agradeço!
<!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>Exercicio</title>
<style>
body{
background: rgba(179, 168, 179, 0.434);
font: normal 20px Arial;
color: rgb(0, 40, 78);
}
</style>
</head>
<body>
<h1>Nacionalidade</h1>
País de nascimento: <input type=”text” name=”nascimento” id=”nascimento”>
<input type=”button” value=”Enter” onclick=”clicar()”>
<div id=”res”>
</div>
<script>
function clicar() {
var pais = window.document.getElementById(‘nascimento’).value
var res = window.document.getElementById(‘res’)
res.innerHTML = Você é natural do ${pais}.
if (pais == ‘Brasil’) {
res.innerHTML += ‘Você é brasileiro!’
} else {
res.innerHTML += ‘Você é estrangeiro.’
}
}