-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (40 loc) · 1.96 KB
/
index.html
File metadata and controls
50 lines (40 loc) · 1.96 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encriptando e Decriptando Palavras</title>
<script src="index.js"></script>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/styleResponsiveCellphone.css">
<link rel="stylesheet" href="styles/styleResponsiveTablet.css">
<script src="https://kit.fontawesome.com/d1070b38b7.js" crossorigin="anonymous"></script>
</head>
<body>
<header style="color: red;">
<img src="svg/a2x.svg" alt="">
</header>
<div class="componentesPrincipais">
<main class="secaoPrincipal">
<textarea autofocus name="textoDigitado" maxlength="1000" placeholder="Digite seu texto aqui:" type="text" class="textoDigitado" cols="10" rows="5"></textarea>
<img class="letrinhas" src="svg/letrasMinusculas.svg" alt="informativo sobre letras permitidas">
<div class="botoesMain">
<button class="encriptar" onclick="encriptar()"> <i class="fa-solid fa-lock"></i> Criptografar</button>
<button class="descriptar" onclick="descriptar()"> <i class="fa-solid fa-lock-open"></i> Descriptografar</button>
</div>
</main>
<aside class="secaoTexto">
<img class="bonecoSVG" src="svg/boneco.svg" alt="garoto pensando">
<img class="nenhuma" src="svg/nenhumaMensagem2x.svg" alt="nenhuma msg encontrada">
<div class="copiaTexto">
<textarea id="exibirTexto" cols="20" rows="16" readonly class="exibirTexto"></textarea >
<button class="botaoCopiar" onclick="copiarTexto()"><i class="fa-solid fa-copy"></i> Copiar</button>
</div>
</aside>
</div>
<footer>
<p> Idealizado por Alura: Projeto ONE</p>
<p>Desenvolvido por: Felipe César</p>
</footer>
</body>
</html>