-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (91 loc) · 2.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!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" />
<meta
name="description"
content="Codificador de textos é o lugar ideal para você codificar e decodificar seus textos de forma divertida!"
/>
<title>Codificador</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="botoes.css">
<link rel="stylesheet" href="entradaTexto.css">
<link rel="stylesheet" href="saidaTexto.css">
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@200;400&family=Montserrat:wght@300&display=swap"
rel="stylesheet"
/>
<script src="script.js" defer></script>
</head>
<body>
<header>
<p>
<a href="https://www.alura.com.br/" target="_blank"
><img class="logo" src="assets/Logo.png" alt="logo-alura" />
</a>
</p>
</header>
<main class="main">
<section class="principal">
<!--onde o usuário digita a sua mensagem-->
<textarea
class="texto-entrada"
name="input-texto"
id="input-texto"
maxlength="120"
placeholder="Digite aqui"
spellcheck="false"
></textarea>
<div class="informacao">
<img
class="exclamacao"
src="assets/exclamacao.png"
alt="ponto de exclamação"
/>
<label for="input-texto">Apenas letras minúsculas e sem acento</label>
</div>
<!--botões-->
<div class="button">
<input
class="botoes"
type="submit"
value="criptografar"
id="botaoCriptografar"
/>
<input
class="botoes"
type="submit"
value="descriptografar"
id="botaoDesincriptografar"
/>
</div>
</section>
<section class="resultado-tela">
<textarea
classe="resultado-msg"
name="resultado"
id="resultado"
placeholder="Nenhuma mensagem encontrada"
spellcheck="false"
></textarea>
<input class="botoes" type="submit" value="copiar" id="botaoCopia" />
</section>
</main>
<footer>
<div class="footer">
<p>Desenvolvido por Larissa Olimpio</p>
<a
href="https://github.com/LarissaOlimpio"
target="_blank"
rel="externo"
><img src="assets/logo-git_menor.png" alt="ícone do github"
/></a>
</div>
</footer>
</body>
</html>