-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.18 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.18 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Google Icons Link -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200"
/>
<!-- End Google Icons Link -->
<!-- Fav Icon -->
<link rel="icon" href="favicon.svg" type="image/x-icon" />
<!-- End Fav Icon -->
<title>Gravity</title>
</head>
<body>
<div class="app" id="app">
<div class="ui" id="ui">
<div class="controls" id="controls">
<span class="control">Spawn Static Object: Left Click</span>
<span class="control">Spawn Dynamic Object: Right Click</span>
<div class="counter_fps"><span class="label">FPS:</span> <span class="fps">0</span></div>
<div class="counter_objects"><span class="label">Objects Count:</span> <span class="count">0</span></div>
</div>
<span class="material-symbols-outlined arrow_drop_down">arrow_drop_down</span>
</div>
</div>
<script type="module" src="/src/js/main.js"></script>
</body>
</html>