-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (42 loc) · 2.22 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Abaporunhol</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bevan&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="reset.css">
</head>
<body>
<header>
<a href="https://clubdeportugues.com/" target="_blank">
<img class="logo" src="imagens/logo.svg" alt="Logo Club de Português">
</a>
</header>
<main>
<section class="sobre-abaporu">
<h1>Você já conhece o<span class="abaporu"> Abaporu?</span></h1>
<div class="caixa-abaporu-mobile"><img class="abaporu-mobile" src="imagens/abaporu-semfundo.svg" alt="desenho inspirado no Abaporu de Tarsila do Amaral"></div>
<p>Ele está aprendendo português e pode te ajudar a cifrar e decifrar a nossa língua para o<span class="abaporunhol"> Abaporunhol.</span></p>
<p>Mas tome cuidado, ele é antropófago!</p>
<textarea class="texto" cols="41" rows="4" placeholder="Escreva seu texto"></textarea>
<div class="informacao">
<h6><img src="imagens/exclamacao.svg" alt="ponto de exclamação para provocar atenção"> Apenas letras minúsculas e sem acento.</h6>
</div>
<div class="botoes">
<button class="btn-cifrar" onclick="btnCifrar()">Cifrar</button>
<button class="btn-decifrar" onclick="btnDecifrar()">Decifrar</button>
</div>
</section>
<section class="mensagem-transformada">
<input class="mensagem" type="text" placeholder=" " oninput="validarInput(this)">
<button class="btn-copiar" onclick="btnCopiar()">Copiar</button>
</section>
</main>
<script src="script.js"> </script>
</body>
</html>