-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (47 loc) · 2.38 KB
/
Copy pathindex.html
File metadata and controls
47 lines (47 loc) · 2.38 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
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<!-- ===== Charset and Viewport ===== -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- ===== SEO Meta Tags ===== -->
<title>Code Encryption into String</title>
<meta name="description" content="Encode your HTML, CSS, and JavaScript into encrypted-style strings with our free online tool. Obfuscate your source code to prevent easy copying and improve basic protection.">
<meta name="keywords" content="code encryption tool, encode html to string, css encoder online, javascript obfuscator, convert code to encrypted string, hide source code, protect js html css, online code converter, secure web code, encode website code">
<meta name="author" content="Mukesh Kushwaha">
<link rel="canonical" href="https://mukeshkushwahae.github.io/code-encryption-into-string/">
<!-- ===== Favicon and Icons ===== -->
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="shortcut icon" href="./favicon.ico">
<!-- ===== Robots and Crawlers ===== -->
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<meta name="bingbot" content="index, follow">
<!-- ===== CSS File ===== -->
<link rel="stylesheet" href="./assets/css/style.min.css">
</head>
<body>
<!-- ===== Code Encryption into String Form ===== -->
<div class="form-wrapper">
<form>
<div>
<label for="rawCode" class="form-label">Paste Your Code:</label>
<textarea type="text" id="rawCode" class="form-control" rows="4" autocomplete="off"></textarea>
</div>
<div class="button-group">
<button type="button" id="encryptBtn" class="button">Encrypt</button>
<button type="button" id="copyBtn" class="button">Copy</button>
<button type="button" id="clearBtn" class="button">Clear</button>
</div>
<div id="encryptedCodeHidden" class="hidden">
<label for="encryptedCode" class="form-label">Encrypted Code:</label>
<textarea type="text" id="encryptedCode" class="form-control" rows="4" readonly=""></textarea>
</div>
</form>
</div>
<!-- ===== JavaScript File ===== -->
<script src="./assets/js/main.min.js"></script>
</body>
</html>