-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 2.24 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="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>Challenge Oracle Alura</title>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=IBM+Plex+Mono:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="./CSS/style.css">
<link rel="stylesheet" href="./CSS/mobile.css">
<link rel="icon" href="./imagens/favicon.svg" type="image/svg+xml">
<body>
<header class="container">
<h3>Vitor Drumond</h3>
<nav>
<ul class="menu">
<li><a class="github" target="blank" href="https://github.com/vitordrumondd"></a></li>
<li><a class="linkedin" target="blank" href="https://www.linkedin.com/in/vitordrumondd/"></a></li>
<li><a class="behance" target="blank" href="https://www.behance.net/vitordrumondd"></a></li>
</ul>
</nav>
</header>
<main class="container">
<img class="icon-alura-header" src="./imagens/alura_simbolo_header.svg" alt="">
<h1>Troque mensagens <br> criptografadas</h1>
<p>Digite abaixo a mensagem que quer criptografar</p>
<section class="entradadedados">
<textarea placeholder="Digite a mensagem" name="" id="entrada" cols="30" rows="10"></textarea>
<textarea placeholder="Texto criptografado" name="" id="saida" cols="30" rows="10"></textarea>
<div class="botoes-criptografia">
<a class="botao-primario" id="botao-criptogafar" href="#">Criptografar</a>
<a class="botao-secundario" id="botao-descriptogafar" href="#">Descriptografar</a>
</div>
<a id="copiar" class="botao-secundario" href="#">Copiar</a>
<h2 class="regra">Apenas letras minúsculas e sem acento</h2>
</section>
</main>
<footer class="rodape container">
<img src="./imagens/oracle alura footer.svg" alt="">
</footer>
</body>
<script src="./js/script.js"></script>
</head>
</html>