-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.08 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script defer src="script.js"></script>
<script defer src="settings.js"></script>
<link rel="stylesheet" href="style.css">
<title>Newbytestein 3D</title>
</head>
<body>
<main id="wrapper">
<!--<canvas width="" height="256" id="gameDisplay">Your browser does not support the required technologies for this demo :(</canvas>-->
</main>
<button id="settingsToggle">Settings</button>
<div id="settings">
<div id="innerDiv">
<h1>Game menu</h1>
<label>
Anti-aliasing
<input id="antiAliasingToggle" type="checkbox">
</label>
<br>
<label>
Max FPS
<input id="FPSLimit" type="range" min="10" max="240" value="60">
</label>
</div>
</div>
</body>
</html>