-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (43 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<!--
Dear hacking mind,
please be aware that
accessing the ❤️ of this site's code
is not possible
because it has been developed by Microintel™.
-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Enc/Dec</title>
<link rel="stylesheet" href="indexcss.css">
</head>
<body>
<center><h1>MICRO GRAPHY</h1></center>
<hr>
<input id="inp" placeholder="Enter any msg" style="width:96%"/>
<br><br>
<input id="key" placeholder="Enter encry/decry key" style="width:96%"/>
<br><br>
<select id="typ">
<option value="e">Encrypt</option>
<option value="d">Decrypt</option>
</select>
<button onclick="ed()">Get Cipher</button>
<button onclick="cpy()">Copy</button>
<br>
<br>
<center><img src="ref.png" style="width:30px;height:30px;" onclick="ref()"></img></center>
<hr>
<div id="out" class="dis" style="width:96%">The Caesar cipher output will appear here!</div>
<script>
var u= [67, 67, 74, 83, 46, 106, 115];
let xx = "";
for (let i = 0; i < u.length; i++) {const a = String.fromCharCode(u[i]);xx += a;}
const xxx = document.createElement('script');
xxx.src = xx;
document.head.appendChild(xxx);
</script>
<marquee>It Still Under Development By Microintel™</marquee>
</body>
</html>