-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
31 lines (31 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Homepage</title>
<link rel="manifest" href="./manifest.json">
<link rel='stylesheet' href='./style.css'>
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
<script>
if('serviceWorker' in navigator) {
navigator.serviceWorker.register('./service-worker.js');
};
</script>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="PWA Example">
<link rel="apple-touch-icon" href="icon-152x152.png">
<meta name="msapplication-TileImage" content="icon-144x144.png">
<meta name="msapplication-TileColor" content="#ffffff">
</head>
<body>
<nav>
<a href='index.html' class='selected'>Home</a>
<a href='blog.html'>Blog</a>
<a href='about.html'>About</a>
</nav>
<main>
Hi there, this is the content area.
</main>
</body>
</html>