-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.19 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
<!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>Veja o seu futuro aqui</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="shortcut icon" href="./assets/logo.svg" type="image/png">
</head>
<body>
<div id="container">
<img src="./assets/cristal-ball.svg" alt="Imagem de uma bola de cristal" />
<h1>Descubra o seu destino!</h1>
<p>Clique em fazer pergunta para que seu destino seja revelado.</p>
<input id="pergunta" type="text" placeholder="Digite a sua pergunta" />
<button id="buttonPerguntar"onclick="fazerPergunta()">Fazer Pergunta</button>
<h3 id="resposta"></h3>
</div>
</body>
<!-- Footer -->
<footer>
<p>
Feito com ❤️ por
<a href="https://brunodorea.gatsbyjs.io/" target="__blank">Bruno Dórea</a>
na Maratona Explorer da
<a href="https://evento.rocketseat.com.br/maratona-explorer/episodios/explorer/abertura/edicao/1" target="__blank">
Rocketseat</a>
</p>
</footer>
<script src="./js/script.js"></script>
</html>