-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 851 Bytes
/
index.html
File metadata and controls
29 lines (28 loc) · 851 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hydra GE Examples</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap');
body {
background-color: #111;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
canvas {
border: 3px solid #ffffff20;
}
</style>
<link rel="shortcut icon" href="hydra.webp" type="image/webp">
</head>
<body>
<canvas id="game"></canvas>
<script src="src/hydra.js"></script>
<script id="example-script" type="module" src="examples/basics/examples-main.js"></script>
</body>
</html>