forked from planner-project/websocketTest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (33 loc) Β· 1.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/img.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stomp Tester</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:[email protected]&display=swap');
@font-face {
font-family: 'GangwonEduPowerExtraBoldA';
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/[email protected]/GangwonEduPowerExtraBoldA.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body {
display: flex;
flex-direction: column;
font-family: "Noto Sans KR", sans-serif;
font-optical-sizing: auto;
font-style: normal;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>