-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (85 loc) · 2.9 KB
/
Copy pathindex.html
File metadata and controls
98 lines (85 loc) · 2.9 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!doctype html>
<html lang="en">
<head>
<!-- Basic SEO -->
<title>Free Online Text Tools | Word Counter & JSON Formatter</title>
<meta
name="description"
content="Free online tools for word counting, text analysis, and JSON formatting. Fast, accurate, and easy to use."
/>
<meta
name="keywords"
content="word counter, character counter, word count tool, online word counter, free word counter"
/>
<meta name="author" content="Arnav Raj" />
<meta name="robots" content="index, follow" />
<meta charset="UTF-8" />
<!-- Mobile Optimisation -->
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1"
/>
<!-- Open Graph (for WhatsApp, LinkedIn, etc.) -->
<meta
property="og:title"
content="Free Online Text Tools | Word Counter & JSON Formatter"
/>
<meta
property="og:description"
content="Count words, characters and reading time instantly with this free tool."
/>
<meta
property="og:url"
content="https://word-counter-arnav112-dev.vercel.app/"
/>
<meta property="og:type" content="website" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Free Online Text Tools" />
<meta
name="twitter:description"
content="Instantly count words, characters and reading time."
/>
<meta property="og:image" content="https://yourdomain.com/preview.png" />
<!-- Canonical URL -->
<link
rel="canonical"
href="https://word-counter-arnav112-dev.vercel.app/"
/>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- SEO Script -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "TextTools - Word Counter & JSON Formatter"
"url": "https://word-counter-arnav112-dev.vercel.app/",
"description": "Free online word counter tool to count words, characters, sentences and reading time instantly.",
"applicationCategory": "Utility",
"operatingSystem": "All",
"creator": {
"@type": "Person",
"name": "Arnav Raj"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- Google Ads -->
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5904523535356526"
crossorigin="anonymous"
></script>
<!-- google ad -->
</body>
</html>