-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
43 lines (36 loc) · 895 Bytes
/
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
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Game of Life</title>
<!-- ndarray needs 'unsave-eval' & Webcomponents need 'unsafe-inline' -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' 'unsafe-eval' https://fonts.googleapis.com https://fonts.gstatic.com">
<!-- load Gloria Hellelujah fonts from google fonts -->
<link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah" rel="stylesheet">
<link rel="import" href="game-of-life/game-of-life.html">
</head>
<body>
<style>
*
{
width: 100%;
padding: 0;
margin: 0;
overflow: hidden;
}
html
{
width: 100%;
padding: 0;
margin: 0;
}
body
{
width: 100%;
padding: 0;
margin: 0;
}
</style>
<game-of-life></game-of-life>
</body>
</html>