-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (63 loc) · 2.33 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
<!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" />
<link href="style.css" rel="stylesheet" />
<script
src="https://kit.fontawesome.com/162b81ecbe.js"
crossorigin="anonymous"
></script>
<title>Chellenge#1</title>
</head>
<body>
<canvas width="600px" height="400px"></canvas>
<div class="container">
<a href="#"><img class="logo" src="./img/Vector.png" /></a>
<section>
<textarea
class="entrada"
id="inputText"
placeholder="Digite seu texto"
></textarea>
</section>
<section>
<div class="buttons">
<span
><i class="fa-solid fa-circle-exclamation"></i>Apenas
letras minúsculas e sem acento.</span
>
<button class="bt" id="bCriptografar">Criptografar</button>
<button class="bt" id="bDescriptografar">
Descriptografar
</button>
</div>
</section>
<section>
<div class="exibirMsg">
<div class="msg">
<p id="msgP"></p>
</div>
<div class="divImg">
<div>
<img src="./img/High quality products 1 1.png" />
</div>
<div class="divText">
<h3>Nenhuma mensagem<br />encontrada</h3>
<p>
Digite um texto que você deseja<br />
criptografar ou descriptografar.
</p>
</div>
</div>
<div class="divBotao">
<button id="copia" class="bt">Copiar</button>
</div>
</div>
</section>
</div>
<script src="matrix.js"></script>
<script src="script.js"></script>
</body>
</html>