-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 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
<!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 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&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<title>Codificador e Decodificador de Texto</title>
</head>
<body>
<div class="content">
<div class="logo"><img src="./images/Logo.png" alt="logo"></div>
<div class="mainContent">
<div class="entrada"><textarea id="texto" type="text" placeholder="Digite seu texto" ></textarea></div>
<div class="saida">
<div class="msg">
<div class="img"><img src="./images/High-quality-products.png" alt=""></div>
<p class="text1">Nenhuma mensagem <br> encontrada</p>
<p class="text2">Digite um texto que você deseja criptografar ou descriptografar.</p>
</div>
<div class="saidatexto">
<textarea id="saidaTexto" type="text" readonly ></textarea>
<button id="btncopiarTexto" onclick="copiarTexto()">Copiar</button>
</div>
</div>
<div class="btns">
<div class="aviso"><img src="./images/bi_exclamation-circle-fill.png" alt=""><p class="text3">Apenas letras minúsculas e sem acento.</p></div>
<button class="btn crip" id="crip" >Criptografar</button>
<button class="btn descrip" id="descrip" >Descriptografar</button>
</div>
</div>
<footer><span><a href="https://github.com/jjivanc"class="fa fa-github" aria-hidden="true"></a></span><span><a href="https://www.linkedin.com/in/jjivanc/" class="fa fa-linkedin" aria-hidden="true"></a></span> </footer>
</div>
</body>
<script src="main.js"></script>
</html>