-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (49 loc) · 2.66 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
<!DOCTYPE html>
<html lang="ko-kr" color-theme="dark">
<head>
<meta charSet="utf-8" />
<base href="/" />
<link rel="icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<meta name="theme-color" content="#036564" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#036564" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#036564" />
<meta name="msapplication-navbutton-color" content="#036564" />
<meta name="msapplication-TileColor" content="#036564" />
<meta name="msapplication-TileImage" content="/android-chrome-192x192.png" />
<meta name="application-name" content="MUdev.cc" />
<meta name="apple-mobile-web-app-title" content="MUdev.cc" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- https://developers.google.com/web/fundamentals/web-app-manifest/ -->
<link rel="manifest" href="/site.webmanifest" />
<link rel="me" href="https://planet.moe/@MUsoftware" />
<meta name="viewport" content="width=device-width,
height=device-height,
target-densitydpi=device-dpi,
initial-scale=1.0,
minimum-scale=1.0,
maximum-scale=1.0,
user-scalable=0,
user-scalable=no,
shrink-to-fit=no" />
<meta name="author" content="이준영 / MUsoftware" />
<meta name="description" content="MUsoftware Personal Blog" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous" />
<link rel="stylesheet" href="https://unpkg.com/mvp.css" />
<link rel="stylesheet" type="text/css"
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css" />
<link rel="stylesheet" href="/root.css" />
<link rel="stylesheet" href="/index.css" />
<title>MUsoftware | 이준영</title>
</head>
<body>
<noscript>MUdev.cc 사이트가 동작하기 위해서는<br />자바스크립트가 활성화 되어있어야 합니다.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>