-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (65 loc) · 2.93 KB
/
index.html
File metadata and controls
70 lines (65 loc) · 2.93 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
68
69
70
<!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>JSON Formatter - Free Online JSON Validator, Beautifier & Minifier Tool</title>
<meta name="description" content="Free online JSON formatter, validator and beautifier. Format, validate, minify JSON data with syntax highlighting. Dark/light theme support. Copy and download results instantly." />
<meta name="keywords" content="JSON formatter, JSON validator, JSON beautifier, JSON minifier, online JSON tool, JSON syntax highlighter, JSON parser" />
<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="JSON Formatter - Free Online JSON Tool" />
<meta property="og:description" content="Free online JSON formatter, validator and beautifier. Format, validate, minify JSON data with syntax highlighting." />
<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="JSON Formatter - Free Online JSON Tool" />
<meta property="twitter:description" content="Free online JSON formatter, validator and beautifier. Format, validate, minify JSON data with syntax highlighting." />
<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": "JSON Formatter",
"description": "Free online JSON formatter, validator and beautifier tool",
"url": "https://json.const.site/",
"author": {
"@type": "Person",
"name": "const",
"url": "https://blog.luckfunc.com"
},
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"JSON formatting",
"JSON validation",
"JSON minification",
"Syntax highlighting",
"Copy to clipboard",
"Download JSON files",
"Dark/Light theme"
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>