-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 916 Bytes
/
index.html
File metadata and controls
32 lines (29 loc) · 916 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=IBM+Plex+Sans+KR:wght@100;200;300;400;500;600;700&family=Noto+Sans+KR:wght@100;300;400;500;700&family=Raleway:wght@100;200;300;400;500&display=swap');
</style>
<script type="text/javascript">
document.oncontextmenu = function () {
return false;
};
</script>
<style>
video {
display: none;
width: 0;
height: 0;
}
</style>
<title>Code Learner</title>
</head>
<body oncontextmenu="return false" ondragstart="return false">
<div id="root" style="overflow: hidden;"></div>
<div id="toast-root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>