-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GTA</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<img src="assets/intro.png" alt="loading-page" id="name">
<div id="button-container">
<button id="startButton">START</button>
<button id="showButtonsInfo">Button Info</button>
</div>
<img src="assets/intro2.png" alt="buttons"id="person">
<div id="buttonInfoModal" class="modal">
<div class="modal-content">
<span class="close" id="closeInfoModal" >×</span>
<h2>Controls</h2>
<p>Here's your keys for the Journey</p>
<ul>
<li>W: MOVE FORWARD</li>
<li>A: MOVE LEFT</li>
<li>S: MOVE DOWN</li>
<li>D: MOVE RIGHT</li>
<li>R: CHANGE TO CAR</li>
<li>M: PLAY/STOP MUSIC</li>
<li>C: CHANGE MUSIC</li>
<li>U: CHANGE SPEED</li>
<li>G: TO START GAME</li>
</ul>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>