-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
26 lines (26 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" href="./icon/icon.svg" type="image/svg+xml">
<meta property="og:title" content="Notepad">
<meta property="og:description" content="Simple Textfield">
<meta property="og:url" content="https://junhg0211.github.io/notepad">
<meta property="og:image" content="https://junhg0211.github.io/notepad/icon/icon.svg">
<meta property="og:image:type" content="image/svg+xml">
<meta name="theme-color" content="#2C2C2C" data-react-helmet="true">
<title>Notepad</title>
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css" />
<link href="https://fonts.cdnfonts.com/css/cmu-serif" rel="stylesheet">
<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=Noto+Serif+JP:wght@200..900&family=Noto+Serif+KR:wght@200..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<script src="./emojis.js"></script>
<script src="./index.js"></script>
</head>
<body onload="onload()">
<textarea class="sans-serif" autofocus spellcheck="false"></textarea>
</body>
</html>