-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (50 loc) · 2.68 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
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html lang="id">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="https://aerphanas.github.io/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://aerphanas.github.io/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="194x194" href="https://aerphanas.github.io/images/favicon-194x194.png">
<link rel="icon" type="image/png" sizes="192x192" href="https://aerphanas.github.io/images/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://aerphanas.github.io/images/favicon-16x16.png">
<link rel="manifest" href="https://aerphanas.github.io/images/site.webmanifest">
<link rel="mask-icon" href="https://aerphanas.github.io/images/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#74dfcd">
<meta name="msapplication-TileImage" content="https://aerphanas.github.io/images/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Open Graph / Facebook -->
<meta property="og:title" content="Λerphanas Blog - Usholli" />
<meta property="og:url" content="https://aerphanas.github.io/usholli/" />
<meta property="og:image" content="https://aerphanas.github.io/images/logo.png" />
<meta property="og:description" content="Contoh Proyek menggunakan Elm Programming Language" />
<meta property="og:locale" content="id_ID" />
<meta property="og:site_name" content="Λerphanas" />
<meta property="og:type" content="website" />
<!-- Twitter -->
<meta name="twitter:title" content="Λerphanas Blog - Usholli" />
<!--<meta name="twitter:url" content="https://aerphanas.github.io" />-->
<meta name="twitter:image" content="https://aerphanas.github.io/images/logo.png" />
<meta name="twitter:description" content="Contoh Proyek menggunakan Elm Programming Language" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@aerphanas" />
<meta name="twitter:creator" content="@aerphanas" />
<link rel="stylesheet" href="https://aerphanas.github.io/css/default.css" />
<title>Λerphanas Blog - Usholli</title>
<meta name="title" content="Λerphanas Blog - Usholli" />
<meta name="description" content="Contoh Proyek menggunakan Elm Programming Language" />
<meta name="author" content="aerphanas">
<script src="main.js"></script>
<link rel="stylesheet" href="main.css"">
</head>
<body>
<div id="myapp"></div>
<script>
var app = Elm.Main.init({
node: document.getElementById('myapp')
});
</script>
</body>
</html>