-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
43 lines (43 loc) · 1.85 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
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="./favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Convert GIF with wasm" />
<title>GIF Converter</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Anton&display=swap"
rel="stylesheet"
/>
<meta name="description" content="Convert GIF, MP4 with WASM" />
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://marshall-ku.github.io/gifconverter/"
/>
<meta property="og:site_name" content="GIF Converter" />
<meta property="og:image" content="./preview.jpg" />
<meta property="og:title" content="GIF Converter" />
<meta property="og:description" content="Convert GIF, MP4 with WASM" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@marshall_ku_" />
<meta name="twitter:title" content="GIF Converter" />
<meta
property="twitter:description"
content="Convert GIF, MP4 with WASM"
/>
<meta property="twitter:image" content="./preview.jpg" />
<meta name="by" content="Marshall K" />
<meta name="robots" content="index,follow" />
<meta name="theme-color" content="#f1718c" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="GIF Converter" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>