-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 1.57 KB
/
index.html
File metadata and controls
43 lines (38 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Coding and Cryptography</title>
<meta
name="description"
content="Explore encryption, decryption, and cryptography algorithms like RSA, ElGamal, Hill Cipher, One-Time Pad, Vigenère, and more."
/>
<!-- Open Graph -->
<meta property="og:title" content="Cryptography Explorer – Ciphers Project" />
<meta property="og:description" content="Interactive cryptography project demonstrating various encryption and decryption techniques." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://hsh.com" />
<meta property="og:image" content="https://via.placeholder.com/300?text=🕵️♂️" />
<!-- JSON-LD structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "CreativeWork",
"name": "Cryptography Explorer",
"description": "Interactive project to explore various cryptography algorithms",
"url": "https://your-project-url.com",
"creator": {
"@type": "Person",
"name": "Anonymous 🕵️♂️"
}
}
</script>
<!-- Favicon as emoji (mask) -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><text y='32' font-size='32'>🕵️♂️</text></svg>">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>