-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·51 lines (45 loc) · 1.48 KB
/
index.html
File metadata and controls
executable file
·51 lines (45 loc) · 1.48 KB
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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Teach_Mon</title>
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta property="og:title" content="티치몬" />
<meta property="og:url" content="https://teachmon.kro.kr" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://teachmon.kro.kr/ogImage.png" />
<meta property="og:description" content="자습 감독 및 방과후 이석 관리 사이트" />
<link href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css" rel="stylesheet">
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: 'Pretendard', sans-serif;
font-size: 16px;
}
img {
max-width: 100%;
}
#root {
width: 100vw;
height: 100vh;
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XRYT2G5H6J"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XRYT2G5H6J');
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>