-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (95 loc) · 3.2 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
<!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" />
<meta name="author" content="Emanuel Iturres" />
<link rel="icon" href="images/icon-png-img.png">
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="index.css" />
<title>RGB - Encryptor</title>
</head>
<body>
<nav class="nav-bar">
<h1 class="title">RGB</h1>
<ul class="links_to_sections">
<li class="li-to-sections"><a href="#goes_to_encryptor">Encryptor</a></li>
<li class="li-to-sections"><a href="#goes_to_contact">Contact</a></li>
</ul>
</nav>
<div class="container">
<main id="goes_to_encryptor" class="encryption-area">
<fieldset class="toEncrypt_Fset">
<textarea
class="toEncrypt_textArea"
id="text_To_Encrypt"
placeholder="Write here..."
cols="30"
rows="20"
></textarea>
<figcaption class="show-i-message" id="if_invalid_input"></figcaption>
<div class="btns_do_Undo_decrypted">
<button class="doEncrypt" id="do_Encrypt">Encrypt</button>
<button class="doDecrypt" id="do_Decrypt">Decrypt</button>
</div>
</fieldset>
<fieldset class="toShow_Fset">
<textarea
class="toShow_textArea"
id="show_Encrypt"
placeholder=" "
cols="30"
rows="20"
readonly
></textarea>
<div class="div-copy">
<button class="copyEncrypt" id="copy_Encrypt">Copy</button>
</div>
</fieldset>
</main>
</div>
<section id="goes_to_contact" class="contact">
<div class="container">
<div class="contact-links">
<a
class="contact-anchor"
target="_blank"
href="https://github.com/ITurres"
><i class="fa-brands fa-github"> Github</i></a
>
<a
class="contact-anchor"
target="_blank"
href="https://www.linkedin.com/in/emanuel-iturres/"
><i class="fa-brands fa-linkedin"> Linkedin</i></a
>
<a class="contact-anchor" target=""
><i class="fa-solid fa-paper-plane"> Email</i></a
>
<a
class="contact-anchor"
target="_blank"
href="https://www.reddit.com/user/ITurres"
><i class="fa-brands fa-reddit"> Reddit</i></a
>
</div>
</div>
</section>
<footer class="footer">
©Made by
<h6 class="author-name">Emanuel ITurres</h6>
</footer>
<script type="text/javascript" src="index.js"></script>
</body>
</html>