-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (60 loc) · 3.47 KB
/
index.html
File metadata and controls
66 lines (60 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#0f172a" />
<!-- Preconnect to external domains for better performance -->
<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin />
<link rel="dns-prefetch" href="https://www.googletagmanager.com" />
<!-- Favicons (early in head so tab icon shows immediately) -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" sizes="48x48 32x32 16x16" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" sizes="any" />
<!-- PRIMARY META -->
<title>Free JSON Formatter & Validator | Format, Minify & Validate JSON Online</title>
<meta name="description" content="Free online JSON formatter, validator, and minifier. Beautify JSON with custom indentation, validate syntax with error details, and minify for production. No signup required." />
<meta name="keywords" content="json formatter, json validator, json beautifier, json minifier, format json online, json pretty print, validate json, json viewer, json editor online" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://free-json-formatter.codama.dev/" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Free JSON Formatter & Validator | Format, Minify & Validate JSON Online" />
<meta property="og:description" content="Free online JSON formatter, validator, and minifier. Beautify JSON with custom indentation, validate syntax with error details, and minify for production. No signup required." />
<meta property="og:url" content="https://free-json-formatter.codama.dev/" />
<meta property="og:site_name" content="Free JSON Formatter & Validator" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Free JSON Formatter & Validator | Format, Minify & Validate JSON Online" />
<meta name="twitter:description" content="Free online JSON formatter, validator, and minifier. Beautify JSON with custom indentation, validate syntax with error details, and minify for production. No signup required." />
<!-- JSON-LD structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Free JSON Formatter & Validator",
"description": "Free online JSON formatter, validator, and minifier. Beautify JSON with custom indentation, validate syntax with error details, and minify for production.",
"url": "https://free-json-formatter.codama.dev/",
"applicationCategory": "UtilitiesApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Format and beautify JSON with custom indentation",
"Validate JSON syntax with detailed error messages",
"Minify JSON for production use",
"Tree view visualization of JSON structure",
"No registration, no limits, works in browser"
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>