forked from simondevyoutube/Quick_Game2_StarWarsThing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 823 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
<!DOCTYPE html>
<html>
<head>
<title>Spaceships Pew Pew</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Odibee+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="base.css">
</head>
<body>
<div class="container" id="container">
<div class="ui" id="game-ui">
<div class="row">
<div class="chat-ui">
<div class="chat-ui-text-area" id="chat-ui-text-area">
<div class="chat-text fadeOut"></div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/gh/kripken/ammo.js@HEAD/builds/ammo.js"></script>
<script src="./src/main.js" type="module">
</script>
<source src="./resources/models/x-wing/scene.gltf">
</body>
</html>