-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (62 loc) Β· 2.54 KB
/
index.html
File metadata and controls
67 lines (62 loc) Β· 2.54 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
65
66
67
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="./src/assets/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Meta Tags -->
<title>Text Preview</title>
<meta name="description" content="Paste text to preview, copy, or download as .txt. Simple full-screen reader with light/dark themes." />
<meta name="keywords" content="text preview, paste text, online notepad, plain text viewer" />
<meta name="author" content="const" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://json.const.site/" />
<meta property="og:title" content="Text Preview - Paste Plain Text" />
<meta property="og:description" content="Paste any text to preview, copy, or download as .txt in light or dark mode." />
<meta property="og:image" content="https://json.const.site/assets/preview.png" />
<meta property="og:site_name" content="JSON Formatter" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://json.const.site/" />
<meta property="twitter:title" content="Text Preview - Paste Plain Text" />
<meta property="twitter:description" content="Paste any text to preview, copy, or download as .txt in light or dark mode." />
<meta property="twitter:image" content="https://json.const.site/assets/preview.png" />
<!-- Canonical URL -->
<link rel="canonical" href="https://json.const.site/" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Text Preview",
"description": "Full-screen plain text preview with copy and download",
"url": "https://json.const.site/",
"author": {
"@type": "Person",
"name": "const",
"url": "https://blog.luckfunc.com"
},
"applicationCategory": "UtilityApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Paste text",
"Copy to clipboard",
"Download .txt",
"Dark/Light theme"
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>