|
4 | 4 | <meta charset="UTF-8" /> |
5 | 5 | <link rel="icon" href="./src/assets/favicon.svg" /> |
6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
7 | | - <title>JSON Formatter</title> |
| 7 | + |
| 8 | + <!-- SEO Meta Tags --> |
| 9 | + <title>JSON Formatter - Free Online JSON Validator, Beautifier & Minifier Tool</title> |
| 10 | + <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." /> |
| 11 | + <meta name="keywords" content="JSON formatter, JSON validator, JSON beautifier, JSON minifier, online JSON tool, JSON syntax highlighter, JSON parser" /> |
| 12 | + <meta name="author" content="const" /> |
| 13 | + <meta name="robots" content="index, follow" /> |
| 14 | + <meta name="language" content="English" /> |
| 15 | + |
| 16 | + <!-- Open Graph / Facebook --> |
| 17 | + <meta property="og:type" content="website" /> |
| 18 | + <meta property="og:url" content="https://json.const.site/" /> |
| 19 | + <meta property="og:title" content="JSON Formatter - Free Online JSON Tool" /> |
| 20 | + <meta property="og:description" content="Free online JSON formatter, validator and beautifier. Format, validate, minify JSON data with syntax highlighting." /> |
| 21 | + <meta property="og:image" content="https://json.const.site/assets/preview.png" /> |
| 22 | + <meta property="og:site_name" content="JSON Formatter" /> |
| 23 | + |
| 24 | + <!-- Twitter --> |
| 25 | + <meta property="twitter:card" content="summary_large_image" /> |
| 26 | + <meta property="twitter:url" content="https://json.const.site/" /> |
| 27 | + <meta property="twitter:title" content="JSON Formatter - Free Online JSON Tool" /> |
| 28 | + <meta property="twitter:description" content="Free online JSON formatter, validator and beautifier. Format, validate, minify JSON data with syntax highlighting." /> |
| 29 | + <meta property="twitter:image" content="https://json.const.site/assets/preview.png" /> |
| 30 | + |
| 31 | + <!-- Canonical URL --> |
| 32 | + <link rel="canonical" href="https://json.const.site/" /> |
| 33 | + |
| 34 | + <!-- Structured Data --> |
| 35 | + <script type="application/ld+json"> |
| 36 | + { |
| 37 | + "@context": "https://schema.org", |
| 38 | + "@type": "WebApplication", |
| 39 | + "name": "JSON Formatter", |
| 40 | + "description": "Free online JSON formatter, validator and beautifier tool", |
| 41 | + "url": "https://json.const.site/", |
| 42 | + "author": { |
| 43 | + "@type": "Person", |
| 44 | + "name": "const", |
| 45 | + "url": "https://blog.luckfunc.com" |
| 46 | + }, |
| 47 | + "applicationCategory": "DeveloperApplication", |
| 48 | + "operatingSystem": "Web Browser", |
| 49 | + "offers": { |
| 50 | + "@type": "Offer", |
| 51 | + "price": "0", |
| 52 | + "priceCurrency": "USD" |
| 53 | + }, |
| 54 | + "featureList": [ |
| 55 | + "JSON formatting", |
| 56 | + "JSON validation", |
| 57 | + "JSON minification", |
| 58 | + "Syntax highlighting", |
| 59 | + "Copy to clipboard", |
| 60 | + "Download JSON files", |
| 61 | + "Dark/Light theme" |
| 62 | + ] |
| 63 | + } |
| 64 | + </script> |
8 | 65 | </head> |
9 | 66 | <body> |
10 | 67 | <div id="root"></div> |
|
0 commit comments