-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 778 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="black" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel='icon' sizes='200x200' href='favicon.png'>
<meta name='mobile-web-app-capable' content='yes'>
<link rel='manifest' href='./manifest.json'>
<link rel="stylesheet" href="./style/style.css" />
<title>Gravitron Game</title>
</head>
<body>
<canvas>Sorry, your browser does not support this game</canvas>
<script src="./js/script.js"></script>
<script>
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("./service-worker.js");
}
</script>
</body>
</html>