-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (25 loc) · 1 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Decodificador</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="challenger.css">
</head>
<body>
<header class="cabecalho">
<img class="imagem-cabecalho" src="Vector.svg">
</header>
<textarea cols="40" rows="30" id="Texto" class="inputPadrao" required placeholder="Digite seu Texto para Codificar ou Decodificar... Sem acentos!"></textarea>
<textarea cols="40" rows="30" id="Resultado" class="input-resultado"></textarea>
<footer>
<input class="Criptografar" type="submit" value="Criptografar" name="Criptografar">
<input class="Descriptografar" type="submit" value="Descriptografar" name="Descriptografar">
<input class ="copiar" type="submit" name="copiar" value="Copiar">
<p>©Created by:João Paulo</p>
<p>Challenge by: Alura & Oracle - ONE</p>
</footer>
<script src="challenger.js"></script>
</body>
</html>