-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 2.46 KB
/
index.html
File metadata and controls
64 lines (64 loc) · 2.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy" content="" />
<title>Client-only QR code generator</title>
<meta name="description" content="A client-only QR code generator using JavaScript." />
<meta name="keywords" content="QR code, generator, client-only, JavaScript" />
<link rel="icon" href="/favicon.ico" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="canonical" href="%VITE_PUBLIC_URL%" />
<meta property="og:title" content="Client-only QR code generator" />
<meta property="og:description" content="A client-only QR code generator using JavaScript." />
<meta property="og:image" content="%VITE_PUBLIC_URL%og-image.png" />
<meta property="og:url" content="%VITE_PUBLIC_URL%" />
<meta property="og:type" content="website" />
<meta property="fb:app_id" content="%VITE_FB_APP_ID%" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Client-only QR Code Generator",
"description": "A client-only QR code generator using JavaScript",
"url": "%VITE_PUBLIC_URL%",
"applicationCategory": "UtilityApplication",
"operatingSystem": "Any",
"keywords": "QR code, generator, client-only, JavaScript",
"author": {
"@type": "Organization",
"name": "Client-only QR Code Generator",
"url": "https://github.com/client-only-qrcode"
},
"offers": {
"@type": "Offer",
"price": 0
}
}
</script>
<link rel="stylesheet" href="./src/style.css" />
</head>
<body>
<div id="app">
<div id="qr-code">
<div class="preload-spacer card"><!-- This placeholder prevents layout shift --></div>
</div>
<form>
<label for="input-text">QR code text</label>
<textarea name="input-text" id="input-text" placeholder="Enter text for QR code"></textarea>
</form>
</div>
<footer>
<p>
Hosted on <a href="https://pages.github.com/" rel="noopener noreferrer">GitHub Pages</a> |
<a
href="https://github.com/client-only-qrcode/client-only-qrcode.github.io"
rel="noopener noreferrer"
>Source</a
>
</p>
</footer>
<script type="module" src="./src/main.ts"></script>
</body>
</html>