-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (23 loc) · 913 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="author" content="Amr Aly & Hossam Samir" />
<meta name="description" content="Interactive Graphics Final project" />
<link rel="stylesheet" href="libs/css/game.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" />
<link rel="icon" href="assets/img/sapienza.jpg" />
<title>IG Final Project</title>
</head>
<body>
<audio id="track" autoplay="autoplay" crossorigin="" loop="loop" type="audio/mpeg">
<source type="audio/mpeg" src="assets/sound/e_beat.mp3">
</source>
</audio>
<div id="world"></div>
<script src="libs/js/three.min.js"></script>
<script src="libs/js/keydrown.min.js"></script>
<script type="module" src="game.js"></script>
</body>
</html>