-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 1.21 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
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>Sorteador de Nomes</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header>
<img src="./assets/img/roleta.svg" alt="logo do app">
<h1>App de sorteio de nomes</h1>
</header>
<main class="app">
<section>
<h2>SORTEAR NOMES</h2>
<p>Crie o sorteio de <strong>nomes</strong> facilmente utilizando essa
aplicação</p>
<hr>
<p class="text-left">Adicione nomes</p>
<div class="formulario">
<label for="entradaNomes">Adicione os nomes para o sorteio</label>
<textarea id="entradaNomes"
placeholder="Adicione nomes separados por vírgula. ex.(Maria, João, Felipe)"></textarea>
<button class="botaoSortear">Sortear</button>
</div>
<div class="resultado">
<span class="fechar">X</span>
<p>Resultado:</p>
</div>
</section>
</main>
<footer></footer>
</body>
<script src="./assets/js/script.js"></script>
</html>