-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (58 loc) · 2.45 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
63
64
65
66
67
68
69
70
<!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="stylesheet" href="estilo.css">
<link rel="stylesheet" href="reset.css">
<script type="text/javascript" src="codigo.js"></script>
<title>Challenge-Alura</title>
</head>
<body>
<header class="header">
<a id="logodaAlura">
<img src="logoAlura.svg" alt="Logo da Alura">
</a>
<a href="https://www.linkedin.com/in/luana-cardoso-b67965246/"class="header__link">
<img class="icone" src="linkedin.svg" alt="Linkedin">
</a>
<a href="https://github.com/luanaxcardoso"class="header__link">
<img class="icone" src="github.svg" alt="GitHub">
</a>
</header>
<H1 class="titulotexto">CODIFICADOR E DECODIFICADOR DE PALAVRAS</H1>
<main>
<section class="secao1">
<H2 class="digiteminusculas">Digite palavras com letras minúsculas, sem espaço e sem acentos</H2>
<input type="text" id="textoCodificado" placeholder="DIGITE OU COLE "oninput="this.value=this.value.replace(/[^a-z]/g,'')" style="font-size: 38px;">
<textarea name="resposta" id="textoDecodificado" cols="100" rows="10"></textarea>
<input type="button" value="CODIFICAR" id="botaoCodificar">
<input type="button" value="COPIAR" id="botaoCopiar">
<button id="botaoColar" onclick="colar()">COLAR</button>
<input type="button" value="DECODIFICAR" id="botaoDecodificar">
</section>
<section class="secao2">
<div class="imagemgarotolupa">
<img src="garotoLupa.svg" alt="garoto com uma lupa">
</div>
</section>
</main>
</body>
<script>
var btn = document.querySelector("#botaoCodificar");
btn.onclick = codificar;
var btn2 = document.querySelector("#botaoCopiar");
btn2.onclick = copiar;
var btn3 = document.querySelector("#botaoColar");
btn3.onclick = colar;
var btn4 = document.querySelector("#botaoDecodificar");
btn4.onclick = decodificar;
</script>
<footer class="footer">
<span class="footer__texto">
Feito com
<img class="icone icone--texto" src="heart2-1.svg" alt="coraçao"> por Luana
</span>
</footer>
</html>