-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (73 loc) · 1.9 KB
/
index.html
File metadata and controls
77 lines (73 loc) · 1.9 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
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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta
content="width=device-width, initial-scale=1.0"
name="viewport"
/>
<title>세무회계 정민</title>
<link
href="/favicon.ico"
rel="shortcut icon"
/>
<link
as="style"
crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css"
rel="stylesheet"
/>
<link
as="style"
crossorigin
href="./tistory.css"
rel="stylesheet"
/>
<link
as="style"
href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-b39cbb91e82c71c0b7d79bc57d8787be444fd0df/static/style/comment.css"
rel="stylesheet"
/>
<link
as="style"
href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-b39cbb91e82c71c0b7d79bc57d8787be444fd0df/static/style/content.css"
rel="stylesheet"
/>
<link
as="style"
href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-b39cbb91e82c71c0b7d79bc57d8787be444fd0df/static/style/postBtn.css"
rel="stylesheet"
/>
<link
as="style"
href="https://tistory1.daumcdn.net/tistory_admin/userblog/tistory-902dc0cb26fb26d270f15e63a9e4a51a16e707a0/static/style/tistory.css"
rel="stylesheet"
/>
<script
type="text/javascript"
src="/scripts/base.js"
></script>
</head>
<body>
<div id="root"></div>
<div
id="tistory"
style="display: none"
>
<script>
fetch('/tistory.html')
.then((response) => response.text())
.then((html) => {
const element = document.getElementById('tistory');
if (element) {
element.innerHTML = html;
}
});
</script>
</div>
<script
type="module"
src="/src/index.tsx"
></script>
</body>
</html>