forked from irfanandriansyah1997/ShortListingLandingPage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 1.58 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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
<!-- Register Asset Preload -->
<link href="https://public.urbanindo.com/fonts/Avenir/stylesheet.css" rel="preload" as="style" />
<link href="https://fonts.googleapis.com/icon?family=Roboto:300,400|Material+Icons" rel="preload" as="style" />
<!-- Register Asset -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/tonsky/[email protected]/distr/fira_code.css">
<link href="https://public.urbanindo.com/fonts/Avenir/stylesheet.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Roboto:300,400|Material+Icons" rel="stylesheet" />
</head>
<body>
<div id="app"></div>
<script>
(function() {
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker
.register('sw.js')
.then((registration) => {
console.log('SW registered: ', registration);
})
.catch((registrationError) => {
console.log('SW registration failed: ', registrationError);
});
});
}
})();
</script>
</body>
</html>