-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (38 loc) · 1.76 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Desmipstificando_</title>
<link rel="shortcut icon" href="./res/icon.png" />
<link rel="stylesheet" href="./css/main.css">
<audio id="correct" src="./res/correct.wav" type="audio/ogg"></audio>
<audio id="incorrect" src="./res/incorrect.wav" type="audio/ogg"></audio>
<audio id="win" src="./res/win.wav" type="audio/ogg"></audio>
<audio id="password" src="./res/password.wav" type="audio/ogg"></audio>
</head>
<body>
<div id="wrapper">
<div id="root">
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" crossorigin="anonymous"></script>
<!-- Perguntas -->
<script src="./src/classes/Questoes/perguntas.js"></script>
<!-- Classes de controle de dados -->
<script src="./src/classes/Questao.js"></script>
<script src="./src/classes/Questoes/Alternativa.js"></script>
<script src="./src/classes/Questoes/perguntas.js"></script>
<script src="./src/classes/Partida.js"></script>
<!-- Telas -->
<script src="./src/classes/Tela.js"></script>
<script src="./src/Index.js"></script>
<script src="./src/pages/Mode/Mode.js"></script>
<script src="./src/pages/Password/Password.js"></script>
<script src="./src/pages/Level/Level.js"></script>
<script src="./src/pages/Question/Question.js"></script>
<script src="./src/pages/Win/Win.js"></script>
<!-- Controle do jogo -->
<script src="./scripts/Main.js"></script>
</body>
</html>