-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.html
39 lines (39 loc) · 948 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
<!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" />
<title>Space Invaders</title>
<link rel="shortcut icon" href="#" />
<style>
canvas {
box-shadow: black 20px 10px 50px;
}
h1 {
margin: 0px;
margin-bottom: 10px;
font-size: 2.9em;
font-family: "Helvetica";
}
body {
display: flex;
align-items: center;
flex-direction: column;
padding: 0px;
margin: 0px;
height: 100vh;
background: linear-gradient(
0deg,
rgb(97, 98, 99) 0%,
rgba(0, 0, 0, 0) 100%
);
}
</style>
</head>
<body>
<h1>Space Invaders</h1>
<canvas id="game"></canvas>
<script type="module" src="index.js"></script>
</body>
</html>