-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 1.89 KB
/
index.html
File metadata and controls
46 lines (45 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<link id="web-icon" rel="icon" type="image/svg+xml" href="blue-icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IMAGE TO PDF CONVERTER</title>
<meta name="color-scheme" content="light">
<meta name="theme-color" content="#ffffff">
<!-- SEO Meta Tags -->
<meta name="description" content="Convert your images to high-quality PDF documents with just one click. Free online image to PDF converter tool." />
<meta name="keywords" content="image to pdf, pdf converter, image converter, online converter, free pdf tool" />
<!-- Open Graph Meta Tags (for social sharing) -->
<meta property="og:title" content="IMAGE TO PDF CONVERTER" />
<meta property="og:description" content="Convert your images to high-quality PDF documents with just one click." />
<meta property="og:type" content="website" />
<meta property="og:image" content="/og-image.jpg" />
<!-- Prevent auto dark mode -->
<style>
html {
color-scheme: light !important;
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: light !important;
}
}
</style>
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
<link rel="dns-prefetch" href="//fonts.gstatic.com">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "IMAGE TO PDF CONVERTER",
"description": "Convert your images to high-quality PDF documents with just one click",
"applicationCategory": "UtilityApplication"
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>