-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (62 loc) · 2.84 KB
/
index.html
File metadata and controls
63 lines (62 loc) · 2.84 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#2AE5BC" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<title>Image Elf - Drag & Drop Dummy Image Generator</title>
<meta
content="Use drag and drop to create dummy images of any size! Fastest way to generate placeholder images with specific dimensions."
name="description"
/>
<meta content="Image Elf - Dummy Image Generator" property="og:title" />
<meta
content="Use drag and drop to create dummy images of any size! Fastest way to generate placeholder images with specific dimensions."
property="og:description"
/>
<meta content="https://www.image-elf.com" property="og:url" />
<meta content="https://www.image-elf.com/logo.svg" property="og:image" />
<meta content="Image Elf - Dummy Image Generator" name="twitter:title" />
<meta
content="Use drag and drop to create dummy images of any size! Fastest way to generate placeholder images with specific dimensions."
name="twitter:description"
/>
<meta content="https://www.image-elf.com/logo.svg" name="twitter:image:src" />
<link href="https://www.image-elf.com" rel="canonical" />
<!-- Hreflang tags are IDENTICAL to other page's tags -->
<link rel="alternate" hreflang="en" href="https://www.image-elf.com" />
<link rel="alternate" hreflang="ru" href="https://www.image-elf.com/ru" />
<link rel="alternate" hreflang="x-default" href="https://www.image-elf.com" />
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DR8YQN5QE0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-DR8YQN5QE0');
</script>
<script>
window.l10n = {
intro1: 'Press and start dragging',
intro2: 'to create an image of any size, big or small!',
intro3: '- Image Elf',
mobileSubtitle: 'Generate an image of any size',
mobileDescription:
'Set your desired dimensions, select the image format, and download your creation instantly!',
imageFormat: 'Image Format',
widthPx: 'Width (px)',
heightPx: 'Height (px)',
tenXSize: '10x size',
generating: 'Generating...',
generateImage: 'Generate Image',
};
</script>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>