-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 892 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
26
27
28
29
30
<!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">
<link rel="stylesheet" href="style.css">
<title>Mystery Box</title>
</head>
<body>
<header>
<h1>Carta <span id="mistery">Misteriosa</span></h1>
</header>
<main>
<section id="input">
<input id="carta-texto" type="text">
<button id="criar-carta">Enviar!</button>
</section>
<section id="display">
<p id="carta-gerada"></p>
<div class="count-words">
<p id="carta-contador"></p>
<label for="carta-contador"></label>
</div>
</section>
<section id="settings"></section>
</main>
<script src="script.js"></script>
</body>
</html>