forked from allexlima/AtomsGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (21 loc) · 762 Bytes
/
index.html
File metadata and controls
25 lines (21 loc) · 762 Bytes
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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<title>Atom's Game</title>
<link rel="stylesheet" type="text/css" href="others/style.css">
<script src="scripts/effects.js"></script>
</head>
<body>
<!-- SoundTrack -->
<audio id="intro" src="sound/intro.mp3" preload></audio>
<audio id="background" src="sound/minecraft_just_jump.mp3" preload loop></audio>
<audio id="explosion" src="sound/boom.mp3" preload></audio>
<audio id="up" src="sound/up.mp3" preload></audio>
<audio id="lose" src="sound/lose.mp3" preload></audio>
<!-- Periodic Table -->
<script src="scripts/periodic_table.js"></script>
<!-- Game Engine -->
<script src="scripts/engine.js"></script>
</body>
</html>