-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 1.96 KB
/
Copy pathindex.html
File metadata and controls
33 lines (31 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CyberKeyGen | Password Generator</title>
<meta name="description" content="Generate cryptographically secure passwords with CyberKeyGen's advanced password generator. Featuring password strength analysis, custom requirements, and enhanced security options." />
<meta name="keywords" content="password generator, secure password, cybersecurity, password strength, password manager, encryption"/>
<meta name="author" content="KARTHIK LAL" />
<meta property="og:title" content="CyberKeyGen | Password Generator" />
<meta property="og:description" content="Generate cryptographically secure passwords with CyberKeyGen's advanced password generator. Featuring password strength analysis, custom requirements, and enhanced security options." />
<meta property="og:image" content="/favicon.png" />
<meta property="og:url" content="https://password.karthiklal.in" />
<!-- PWA meta tags -->
<meta name="theme-color" content="transparent" />
<meta name="description" content="A secure password generator that works offline" />
<link rel="manifest" href="public/manifest.json" />
<link rel="apple-touch-icon" href="public/icon-192x192.png" />
<link rel="apple-touch-icon" sizes="192x192" href="public/icon-192x192-dark.png" />
<link rel="apple-touch-icon" sizes="512x512" href="public/icon-512x512-dark.png" />
<meta name="theme-color" content="transparent">
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#f8f9fa">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="transparent">
</head>
<body>
<div id="root"></div>
<script src="https://cdn.gpteng.co/gptengineer.js" type="module"></script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>