-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (51 loc) · 2.01 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<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=Inter:wght@400;700&display=swap" rel="stylesheet">
<!-- Icon -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<!-- CSS -->
<link rel="stylesheet" href="css/style.css">
<title>Decodificador e Codificador</title>
</head>
<body>
<header>
<img src="img/Logo.svg" alt="logo alura">
</header>
<main class="container">
<section class="container_text">
<textarea name="textarea" id="textarea" cols="30" rows="30" placeholder="Digite seu texto"></textarea>
<div class="container_text_info">
<div>
<span class="material-symbols-outlined">
info
</span>
<p>Apenas letras minúsculas e sem acento.</p>
</div>
<button class="btn-primary" onclick="criptografar()">
Criptografar
</button>
<button class="btn-secundary" onclick="descriptografar()">
Descriptografar
</button>
</div>
</section>
<div class="desc-text">
<div id="msg-empty">
<img src="img/find.svg" alt="">
<h2>Nenhuma mensagem encontrada</h2>
<p>Digite um texto que você deseja criptografar ou descriptografar.</p>
</div>
</div>
</main>
<footer>
Desenvolvido por<a href="https://github.com/lolitthax"> Aline Damião</a>.
</footer>
<script src="js/script.js"></script>
</body>
</html>