-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta charset="utf-8" />
<meta name="keyword" content="game, 환세, 환세희담, 환세취호전, dosgame, dosbox" />
<meta name="description" content="1995년 발매된 환세 시리즈의 첫 작품인 환세희담의 웹 구동 버전" />
<meta name="author" content="shubidumdu" />
<meta property="og:title" content="환세희담" />
<meta property="og:type" content="game" />
<meta property="og:description" content="환세 시리즈의 첫 작품인 환세희담의 웹 구동 버전" />
<meta property="og:image" content="./android-chrome-512x512.png" />
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="manifest" href="./site.webmanifest">
<title>환세희담</title>
</head>
<body>
<div id="jsdos" />
</body>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker
.register('./service-worker.js')
.then((registration) => {
console.log('SW registered: ', registration);
})
.catch((registrationError) => {
console.log('SW registration failed: ', registrationError);
});
});
}
</script>
</html>