-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 1.63 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
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta
name="description"
content="Small webapp for creating an algorithmic password"
/>
<meta property="og:type" content="website" />
<meta name="og:title" property="og:title" content="Algo" />
<meta
name="og:description"
property="og:description"
content="Small webapp for creating an algorithmic password"
/>
<meta property="og:site_name" content="" />
<meta property="og:url" content="https://algopassword.com/" />
<meta name="twitter:card" content="Algorithmic password" />
<meta name="twitter:title" content="Algo" />
<meta
name="twitter:description"
content="Small webapp for creating an algorithmic password"
/>
<meta name="twitter:site" content="" />
<meta name="twitter:creator" content="" />
<title>Algo - Algorithmic Password Generator</title>
<link
rel="icon"
type="image/svg+xml"
href="/src/assets/favicon.svg"
sizes="any"
/>
<link rel="shortcut icon" href="/src/assets/favicon.svg" />
<link rel="apple-touch-icon" href="/src/assets/favicon.svg" />
<!-- <meta property="og:image" content="" /> -->
<!-- <meta name="twitter:image" content="" /> -->
<!-- <link rel="canonical" href="" /> -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<noscript>Javascript needs enabling for this app.</noscript>
<div id="root"></div>
<script src="/src/index.jsx" type="module"></script>
</body>
</html>