-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (45 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Encode-decoder</title>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<header>
<h2>Codificador & Decodificador</h2>
</header>
<main>
<p id="aviso">
Por favor, insira somente letras minúsculas e sem acento!
</p>
<section>
<article id="article-one">
<textarea name="codificar" id="codificar" cols="25" rows="5" placeholder="Digite seu texto aqui"></textarea>
<br>
<button id="btn-codificar">
Codificar
</button>
<button id="btn-decodificar">
Decodificar
</button>
</article>
<article id="article-two">
<textarea name="copiar" id="copiar" cols="25" rows="5" placeholder="Texto codificado/decodificado"></textarea>
<br>
<button id="btn-copiar">
Copiar
</button>
</article>
</section>
</main>
<footer id="footer">
<p>
By Carlos_Duarte © - 2022
</p>
</footer>
<script src="assets/script.js"></script>
</body>
</html>