-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 1.88 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
55
<!DOCTYPE html>
<html lang="en">
<head>
<title>Banner maker</title>
<meta charset="utf-8" />
<link
rel="stylesheet"
async
href="https://fonts.googleapis.com/earlyaccess/notosanskr.css"
/>
<link
rel="stylesheet"
async
href="https://fonts.googleapis.com/earlyaccess/nanumgothic.css"
/>
<link
rel="stylesheet"
async
href="https://fonts.googleapis.com/css?family=Black+Han+Sans&display=swap&subset=korean"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<link rel="icon" href="https://marshall-ku.com/favicon.ico" />
<meta property="og:site_name" content="Banner maker" />
<meta
property="og:image"
content="https://marshall-ku.com/wp-content/uploads/2019/08/generated-thumbnail.png"
/>
<meta property="og:title" content="Banner maker" />
<meta
property="og:description"
content="Design your own banner with HTML5 Canvas!"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@marshall_ku_" />
<meta name="twitter:title" content="Banner maker" />
<meta
property="twitter:description"
content="Design your own banner with HTML5 Canvas!"
/>
<meta
property="twitter:image"
content="https://marshall-ku.com/wp-content/uploads/2019/08/generated-thumbnail.png"
/>
<meta name="by" content="Marshall K" />
<meta name="robots" content="index,follow" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>