-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
42 lines (42 loc) · 1.92 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ROT13 Encoder</title>
<link rel="icon" type="image/x-icon" href="img/caesar-cipher.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<form action="">
<h1 style="text-shadow: 0 0 37px; color: #fff;">ROT13 ENCODER</h1>
<hr><br>
<div class="io-box">
<label>Input Text : </label><br><br><textarea oninput="encryptROT13.call(this)" type="text" name="encrypt" id="encryptBox" wrap="hard" placeholder="A-Z
0-9"></textarea>
<br><br>
<label>Output : </label><br><br><textarea title="Copy to Clipboard" onclick="copyToClipboard.call(this)" readonly type="text" name="decrypt" id="decryptBox" wrap="hard"></textarea>
<p id="output"></p>
</div>
<br><br>
<h3>Feeling Impressed?</h3>
<p>Follow us for more!</p>
<div class="social-media">
<a target="_blank" href="https://www.instagram.com/hanifz799"><img src="img/instagram.png" alt="instagram.png"><span>Hanif</span></a>
<a target="_blank" href="https://www.instagram.com/akufaisal._"><img src="img/instagram.png" alt="instagram.png"><span>Marvell</span></a>
<a target="_blank" href="https://www.instagram.com/raftuazonx"><img src="img/instagram.png" alt="instagram.png"><span>Satria</span></a>
</div>
<footer>
<h4><br> © 2025 Copyright Hanif | Marvell | Satria. All Rights Reserved.<br><br></h4>
</footer>
</form>
<script>
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('encryptBox').addEventListener('input', function() {
encryptROT13.call(this);
});
});
</script>
<script src="main.js"></script>
</body>
</html>