-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.64 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,shrink-to-fit=no"
/>
<title>SVG Favicon Generator</title>
<meta
name="description"
content="This tool will convert your SVG file into a favicon. All operations are performed in the browser, no files are uploaded to the server! This application is inspired by How to Favicon in 2023: Six files that fit most needs."
/>
<link rel="author" href="https://s2n.tech" />
<link name="author" name="Shuntaro Nishizawa (しゅん🌙)" />
<meta name="referrer" content="strict-origin-when-cross-origin" />
<meta property="og:title" content="SVG Favicon Generator" />
<meta
property="og:description"
content="This tool will convert your SVG file into a favicon. All operations are performed in the browser, no files are uploaded to the server! This application is inspired by How to Favicon in 2023: Six files that fit most needs."
/>
<meta
property="og:image"
content="https://favicon-generator.s2n.tech/og-image.jpg"
/>
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@shun_shobon" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/icon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.webmanifest" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>