28 lines
772 B
HTML
28 lines
772 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>ime test</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
@font-face {
|
|
font-family: "heonian";
|
|
src: url('HeonianAlone.otf');
|
|
}
|
|
|
|
textarea {
|
|
font-family: "heonian";
|
|
font-size: 32px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>type in ime, wow!!!!!!!!!!!</p>
|
|
<textarea type="text" class="ime">
|
|
</textarea>
|
|
|
|
<script src="./ime.js" async defer></script>
|
|
</body>
|
|
</html> |