forked from 5hwb/Old-Hangul-Input-Method
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
47 lines (41 loc) · 1.4 KB
/
main.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><!-- header -->
<title>Old Hangul IME</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="Use this to write Old Hangul text."/>
<head>
<style>
p, h1 {
font-family: "Noto Sans", normal;
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');
@font-face {
font-family: "NotoSansCJK";
src: url("NotoSansCJKkr-VF.ttf");
}
textarea {
font-family: "Noto Sans CJK KR", "Noto Sans KR", "NotoSansCJK", normal;
font-size: 30px;
}
</style>
</head>
<body id="body" onload="init();">
<div id="header">
<div id="header_inner" class="fixed">
<div id="logo">
<h1>Old Hangul IME</h1>
</div>
</div>
<!-- <div id="printlogo"><img src="/css/logo.gif" alt="DeGraeve.com" width="181" height="25" /></div> -->
</div>
<!-- /header -->
<div id="main">
<script src="hangulime.js" type="text/javascript"></script>
<form>
<p><strong>Type a string of Old Hangul text. Unicode compliant!</strong></p>
<textarea id="hangulime" rows="5" cols="20"></textarea>
<p>Keyboard layout reference:</p>
<img src="KB_OldHangul.png" alt="Old Hangul IME keyboard layout" width="700"/>
</form>
</div>
</body>
</html>