-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (80 loc) · 2.15 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>프라이빗노트</title>
<style>
html, body {
margin: 0;
padding: 0;
}
.notion-app {
font-size: 10vh;
text-align: center;
}
</style>
<!-- BEGIN: Channel Plugin -->
<script>
(function() {
var w = window;
if (w.ChannelIO) {
return (window.console.error || window.console.log || function(){})('ChannelIO script included twice.');
}
var ch = function() {
ch.c(arguments);
};
ch.q = [];
ch.c = function(args) {
ch.q.push(args);
};
w.ChannelIO = ch;
function l() {
if (w.ChannelIOInitialized) {
return;
}
w.ChannelIOInitialized = true;
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = 'https://cdn.channel.io/plugin/ch-plugin-web.js';
s.charset = 'UTF-8';
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}
if (document.readyState === 'complete') {
l();
} else if (window.attachEvent) {
window.attachEvent('onload', l);
} else {
window.addEventListener('DOMContentLoaded', l, false);
window.addEventListener('load', l, false);
}
})();
ChannelIO('boot', {
"pluginKey": "204ad750-a3ee-4182-a8c5-05883589bd0c"
});
</script>
<!-- END: Channel Plugin -->
<!-- BEGIN: Oopy HTML editor -->
<script>
window.PNOTE_BASE_URL = './';
</script>
<script src="./main.js"></script>
<!-- END: Oopy HTML editor -->
</head>
<body>
<div class="notion-app">
노션 영역 0<br>
노션 영역 1<br>
노션 영역 2<br>
노션 영역 3<br>
노션 영역 4<br>
노션 영역 5<br>
노션 영역 6<br>
노션 영역 7<br>
노션 영역 8<br>
노션 영역 9<br>
</div>
</body>
</html>