-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 942 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<span class="student-name">
Szabó László - EHA kód
</span>
<span class="key-combos">
Key combos
</span>
<p class="toggle-hint">
Toggle hint: press "I" button
</p>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/109/three.min.js"></script>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous">
</script>
<script src="trackball.js"></script>
<script src="orbit.js"></script>
<script src="dat.gui.min.js"></script>
<script src="stats.min.js"></script>
<script src="tween.min.js"></script>
<script src="OBJLoader.js"></script>
<script src="game.js"></script>
</body>
</html>