-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
17 lines (17 loc) · 930 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- for PWA this is required , generate it with emmet-->
<title>Template for a PWA</title>
<link rel="stylesheet" href="./style.css"> <!--adding stylesheets-->
<link rel="manifest" href="./manifest.json"><!--adding manifest (required for PWA)-->
<meta name="theme-color" content="#FFFFFF"/><!--theme-color (required for PWA) : Used for the color of the menubar in chrome desktop and mobile and notification bar in PWA mode-->
<link rel="apple-touch-icon" href="./img/apple_touch_icon.png"><!--required for PWA to be installable on IOS devices : need to be a non-transparent 192px (or 180px) square PNG-->
</head>
<body>
<button>Nothing</button>
</body>
<script src="main.js"></script> <!--adding our js script-->
</html>