-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (52 loc) · 2.58 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
<!DOCTYPE html:5>
<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="icon" href="imagens/cadeado-log.png">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/responsividade.css">
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<title> Decodificador de texto | Desafio Alura | Felipe C Carneiro</title>
</head>
<body>
<header>
<img src="imagens/logo.png" alt="logo da Alura" class="logo">
</header>
<main class="main">
<section>
<textarea class="input-texto" id="" cols="40" rows="6" placeholder="Digite seu texto" required autofocus></textarea>
<div class="informacao">
<img src="imagens/aviso.png">
<h6>Apenas letras maiúsculas e minúsculas</h6>
</div>
<div class="botoes">
<button class="encriptar" onclick="btnEncriptar()">Criptografar</button>
<button class="desencriptar" onclick="btnDesencriptar()">Descriptografar</button>
</div>
</section>
<section class="section2">
<textarea id="mensagem" class="mensagem" cols="18" rows="10"readonly></textarea>
<div class="botoes" >
<button class="copiar" onclick="btnCopiar()">Copiar</button>
</div>
</section>
</main>
<footer>
<p>ONE - Oracle Next Education - ALURA</p>
<br>
<p>Em desenvolvimento por <br>2022 © <a href="https://api.whatsapp.com/send?phone=5521965550012&text=" target='_blank'>Felipe C Carneiro</a> </p>
<div class="social">
<a href="https://github.com/FelipeeCarneiro" target="_blank"><img src="imagens/social/github.png" alt=""></a><a href="https://www.linkedin.com/in/correaflp/" target="_blank"><img src="imagens/social/linkedin.png" alt=""></a>
</div>
<br>
<h6 class="versao">Versão 1.0</h6>
<p>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/track/4GRftUC1DYNm9rtGxiEsWg?utm_source=generator&theme=0" width="50%" height="80" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"></iframe>
</p>
</footer>
<script src="script.js"></script>
</body>
</html>