-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
40 lines (38 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>heic.app</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta
name="description"
content="Convert HEIC images to JPGs online fast via libheic in the browser. This site 100% browser-based with no download or upload required. Your photos are converted on your computer."
/>
<meta
name="keywords"
content="heic, jpg, jpeg, heic to jpg, heic conversion, libheic, libheic-js, serverless, netlify"
/>
<meta name="og:title" content="HEIC to JPG converter online" />
<meta name="twitter:title" content="Convert HEIC to JPG 100% in the browser via libheic" />
<meta
name="twitter:description"
content="Convert HEIC images to JPGs online fast via libheic in the browser. This site 100% browser-based with no download or upload required. Your photos are converted on your computer."
/>
<meta name="copyright" content="Copyright © 120 Rico Kahler" />
<meta name="author" content="Rico Kahler" />
<link rel="shortcut icon" href="/favicon.ico" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-151301218-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-151301218-2');
</script>
</head>
<body>
<script type="text/javascript" src="./heic-app.js"></script>
</body>
</html>