-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (103 loc) · 3.38 KB
/
index.html
File metadata and controls
105 lines (103 loc) · 3.38 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!doctype html>
<html lang="en">
<head>
<link rel="icon" type="image/png" href="/op_image.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rest Spot Finder</title>
<meta name="description" content="경로 상 휴게소 찾기." charset="UTF-8" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://restspotfinder.site/" />
<meta property="og:title" content="Rest Spot Finder" />
<meta property="og:description" content="경로 상 휴게소 찾기." />
<meta property="og:site_name" content="Rest Spot Finder" />
<meta property="og:image" content="./op_image.png" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-PE3DGFT69X"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-PE3DGFT69X')
</script>
<!-- Google Tag Manager -->
<script>
;(function (w, d, s, l, i) {
w[l] = w[l] || []
w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' })
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : ''
j.async = true
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl
f.parentNode.insertBefore(j, f)
})(window, document, 'script', 'dataLayer', 'GTM-N7Q5PMQD')
</script>
<!-- End Google Tag Manager -->
<script
type="text/javascript"
src="https://oapi.map.naver.com/openapi/v3/maps.js?ncpKeyId=pypeut7lzg"
></script>
<script>
;(function () {
var w = window
if (w.ChannelIO) {
return w.console.error('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'
var x = document.getElementsByTagName('script')[0]
if (x.parentNode) {
x.parentNode.insertBefore(s, x)
}
}
if (document.readyState === 'complete') {
l()
} else {
w.addEventListener('DOMContentLoaded', l)
w.addEventListener('load', l)
}
})()
ChannelIO('boot', {
pluginKey: '82a84b60-4a8a-41bc-b800-a4b91671903c',
})
</script>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=cached"
/>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-N7Q5PMQD"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>