-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
109 lines (94 loc) · 3.09 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link href="/normalize.css" rel="stylesheet" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Dohyun Ko's Resume</title>
<!-- For old IEs -->
<link rel="shortcut icon" href="favicon.ico" />
<!-- For new browsers - multisize ico -->
<link
rel="icon"
type="image/x-icon"
sizes="16x16 32x32"
href="favicon.ico"
/>
<!-- For iPad with high-resolution Retina display running iOS ≥ 7: -->
<link
rel="apple-touch-icon"
sizes="152x152"
href="favicon-152-precomposed.png"
/>
<!-- For iPad with high-resolution Retina display running iOS ≤ 6: -->
<link
rel="apple-touch-icon"
sizes="144x144"
href="favicon-144-precomposed.png"
/>
<!-- For iPhone with high-resolution Retina display running iOS ≥ 7: -->
<link
rel="apple-touch-icon"
sizes="120x120"
href="favicon-120-precomposed.png"
/>
<!-- For iPhone with high-resolution Retina display running iOS ≤ 6: -->
<link
rel="apple-touch-icon"
sizes="114x114"
href="favicon-114-precomposed.png"
/>
<!-- For iPhone 6+ -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon-180-precomposed.png"
/>
<!-- For first- and second-generation iPad: -->
<link
rel="apple-touch-icon"
sizes="72x72"
href="favicon-72-precomposed.png"
/>
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon" sizes="57x57" href="favicon-57.png" />
<!-- For Old Chrome -->
<link rel="icon" sizes="32x32" href="favicon-32.png" />
<!-- For IE10 Metro -->
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="favicon-144.png" />
<meta name="theme-color" content="#ffffff" />
<!-- Chrome for Android -->
<link rel="manifest" href="manifest.json" />
<link rel="icon" sizes="192x192" href="favicon-192.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap"
rel="stylesheet"
/>
<script type="text/javascript">
window.smartlook ||
(function (d) {
var o = (smartlook = function () {
o.api.push(arguments);
}),
h = d.getElementsByTagName("head")[0];
var c = d.createElement("script");
o.api = new Array();
c.async = true;
c.type = "text/javascript";
c.charset = "utf-8";
c.src = "https://web-sdk.smartlook.com/recorder.js";
h.appendChild(c);
})(document);
smartlook("init", "dc73d66bf56bb145f1d722e485e3939b25aaebde", {
region: "eu",
});
</script>
</head>
<body>
<div id="root"></div>
<script src="/src/main.tsx" type="module"></script>
</body>
</html>