-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (21 loc) · 894 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.jpg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Password Generator</title>
<meta name="theme-color" content="#140B2D" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#140B2D" media="(prefers-color-scheme: dark)">
<meta property="og:title" content="Password Generator">
<meta property="og:site_name" content="Password Generator">
<meta property="og:url" content="awaaw">
<meta property="og:description" content="Generate secure passwords quickly!">
<meta property="og:type" content="website">
<meta property="og:image" content="/favicon.jpg">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>