-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1009 Bytes
/
index.html
File metadata and controls
42 lines (39 loc) · 1009 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Skyline Sprint</title>
<style>
html,
body {
margin: 0;
padding: 0;
background: #12151f;
font-family: "Trebuchet MS", "Gill Sans", sans-serif;
color: #f2f4fa;
}
main {
min-height: 100vh;
display: grid;
place-items: center;
padding: 1rem;
box-sizing: border-box;
}
canvas {
border: 3px solid #2b3347;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
max-width: 100%;
height: auto !important;
}
</style>
</head>
<body>
<main id="app"></main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.3/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.3/addons/p5.sound.min.js"></script>
<script src="levels.js"></script>
<script src="sketch.js"></script>
</body>
</html>