-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (120 loc) · 4.66 KB
/
Copy pathindex.html
File metadata and controls
129 lines (120 loc) · 4.66 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Developer Toolbox - Essential Online Tools for Developers</title>
<meta name="description" content="Collection of essential online tools for developers including text utilities, encoding/decoding, date tools, JSON formatters, security tools and more." />
<meta name="keywords" content="developer tools, online tools, JSON formatter, Base64 encoder, text utilities, regex tester, epoch converter, hash generator, UUID generator, developer utilities" />
<meta name="author" content="Developer Toolbox" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://onlinedevtools.io/" />
<link rel="icon" href="/lovable-uploads/2924f4cd-048e-4eae-a33c-9322b36f0f21.png" type="image/png">
<!-- Tally widget script -->
<script src="https://tally.so/widgets/embed.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EJRBQH47NT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-EJRBQH47NT');
</script>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://onlinedevtools.io/" />
<meta property="og:title" content="Developer Toolbox - Essential Online Tools for Developers" />
<meta property="og:description" content="Collection of essential online tools for developers including text utilities, encoding/decoding, date tools, JSON formatters, security tools and more." />
<meta property="og:image" content="https://onlinedevtools.io/lovable-uploads/7f490b6e-f11e-45f8-9cd9-aec90fe310a3.png" />
<meta property="og:site_name" content="Developer Toolbox" />
<!-- Additional SEO meta tags -->
<meta name="theme-color" content="#2563eb" />
<meta name="msapplication-TileColor" content="#2563eb" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Developer Toolbox",
"description": "Collection of essential online tools for developers including text utilities, encoding/decoding, date tools, JSON formatters, security tools and more.",
"url": "https://onlinedevtools.io/",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "Developer Toolbox"
},
"featureList": [
"Word/Character Counter",
"Text Diff Checker",
"Case Converter",
"Regex Tester",
"URL Encoder/Decoder",
"Base64 Encoder/Decoder",
"JWT Decoder",
"Epoch Converter",
"ISO 8601 Generator",
"Cron Expression Editor",
"JSON Formatter & Validator",
"XML Formatter",
"YAML Converter",
"Hash Generator",
"Htpasswd Generator",
"UUID Generator",
"Lorem Ipsum Generator",
"Fake Data Generator"
],
"mainEntity": [
{
"@type": "SoftwareApplication",
"name": "JSON Formatter & Validator",
"description": "Format, validate, and minify JSON data",
"url": "https://onlinedevtools.io/tool/json-formatter"
},
{
"@type": "SoftwareApplication",
"name": "Base64 Encoder/Decoder",
"description": "Encode and decode Base64 strings",
"url": "https://onlinedevtools.io/tool/base64-encoder"
},
{
"@type": "SoftwareApplication",
"name": "UUID Generator",
"description": "Generate UUIDs (v1, v4) and validate existing ones",
"url": "https://onlinedevtools.io/tool/uuid-generator"
}
]
}
</script>
<!-- Breadcrumb structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://onlinedevtools.io/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Developer Tools",
"item": "https://onlinedevtools.io/"
}
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>