-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (24 loc) · 947 Bytes
/
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
<!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>Bola de cristal</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div id="container">
<img
src="https://gist.githubusercontent.com/maykbrito/0acdf4ce919838ffed50915a31fc5b23/raw/6f4dd01ec3116428ec4c99255944cb9ac7927590/cristal-ball.svg"
alt="Imagem de uma bola de cristal"
/>
<h1>Vou revelar seu destino!</h1>
<p>Clique em fazer pergunta para que seu destino seja revelado.</p>
<input id="pergunta" type="text" placeholder="Digite sua pergunta" />
<button id="questButton" onclick="fazerPergunta()">Fazer pergunta</button>
<h3 id="resposta"></h3>
</div>
</body>
</html>
<script src="./app.js"></script>