-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (98 loc) · 4.68 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Decodificador de Texto - Alura Challenges Oracle ONE</title>
<meta author="Eduardo-Roque" content="Alura" />
<meta name="keyworlds" content="HTML5, CSS, JS" />
<meta property="og:description" content="Decodificador de Texto - Desafio Alura" />
<meta property="og:url" content="https://eduardo-roque.github.io/ONE-Challenge01_Codificador/index.html" />
<meta property="og:image" content="https://raw.githubusercontent.com/Eduardo-Roque/ONE-Challenge01_Codificador/master/image-readme/capa1.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1152">
<meta property="og:image:height" content="819">
<link rel="stylesheet" href="style/reset.css">
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/caixaDeMensagem.css">
<link rel="stylesheet" href="style/botoes.css">
<!--===================== RemixIcon =========================-->
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<!--=============== CSS ==============-->
<link rel="stylesheet" href="style/skin/color-1.css"> <!--Cor Primaria-->
<!--=============== Skin Colors ==============-->
<link rel="stylesheet"
href="style/skin/color-1.css"
class="alternate-style"
title="color-1"
disabled
/>
<link rel="stylesheet"
href="style/skin/color-2.css"
class="alternate-style"
title="color-2"
disabled
/>
</head>
<body>
<header>
<div class="banner">
<img src="image/alura.gif"
id="banner-noturno"
class="alternate-style"
/>
<img src="image/logo-Alura.png"
id="banner-logo"
class="alternate-style"
title="color-1"
/>
<h2>4ºTURMA CHALLENGE ONE - DECODIFICADOR DE TEXTO</h2>
</div>
</header>
<main class="caixa">
<section class="box-mensagem">
<textarea id="mensagem" rows="20" cols="12" placeholder="Digite seu texto" autofocus></textarea>
<div class="botao1">
<img src="image/exclamação.png"><p>Apenas letras minúsculas e sem acento.</p>
<button id="botaoCodificar">Criptografar</button>
<button id="botaoDescodificar">Descriptografar</button></label>
</div>
</section>
<section class="box-resultado">
<textarea id="text-resultado" rows="10" cols="5" readonly placeholder=" " pattern="^[a-zA]+$"></textarea><!--readonly é só para ler/ sem escrever nele-->
<div id="botao2">
<button id="copy">Copiar</button>
<button id="limpar">Limpar</button>
</div>
</section>
</main>
<!--=============== Style Switcher ==============-->
<div class="style__switcher">
<div class="style__switcher-toggler">
<i class="ri-settings-4-fill"></i>
</div>
<div class="colors">
<span class="color-1" onclick="setActiveStyle('color-1')"></span>
<!--Modo Noturno-->
<span class="color-2" onclick="setActiveStyle('color-2')"></span>
</div>
</div>
<!--=============== Footer ==============-->
<footer>
<div>
<a href="https://github.com/Eduardo-Roque" target="_blank"><img src="image/github.png" style="margin-right: 3%"></a>
<a href="https://www.linkedin.com/in/eduardo-roque-79b23b214/" target="_blank"><img src="image/linkedin.png" style="margin-right: 3%"></a>
<a href="mailto:eduardo.roqueamaral09@gmail.com" target="_blank"><img src="image/gmail.png"></a>
</div>
<p id="Copyright">© Copyright Eduardo-Roque - CHALLENGE ALURA - 2022</p>
</footer>
<!--=============== Common ==============-->
<script src="scripts/common.js"></script>
<!--=============== Media Light ou Dark ==============-->
<script src="scripts/ModoDeLuz.js"></script>
</body>
</html>
<script src="scripts/codificar.js"></script>
<script src="scripts/descodificar.js"></script>
<script src="scripts/botaoLimpar.js"></script>
<script src="scripts/botaoCopiar.js"></script>
<script src="scripts/urso.js"></script>