-
Notifications
You must be signed in to change notification settings - Fork 2
/
how-to-play.html
37 lines (29 loc) · 1.28 KB
/
how-to-play.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
<html id="htmlID">
<head>
<link rel="stylesheet" href='https://fonts.googleapis.com/css?family=Berkshire Swash'>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/how-to-play.css">
<link rel="icon" href="image/small-logo-with-shadow.png" type="image/icon type">
<title>Attack On Titan</title>
</head>
<body>
<a href="index.html"><img id="flagImage" src="image/small-logo-with-shadow.png" alt="flag"></a>
<span id="howToPlayTitle">How to play</span>
<a id="nextButton">Next</a>
<a id="exitButton" href="index.html">Exit</a>
<span id="instruction1">Press ">" to move forward</span>
<span id="instruction2">Press space to jump</span>
<span id="instruction3">Press "s" to speed</span>
<span id="instruction4">titan or stone collision decrease health by 20%</span>
<span id="instruction5">injection collision increase health by 20%</span>
<span>
<video autoplay muted loop src="videos/attack-on-titans-video.mp4"></video>
</span>
<div class="speaker">
<img src="image/no-sound.svg" id="sound" alt="speaker" width="35" height="35">
</div>
<script src="js/jquery/jquery-3.5.1.js"></script>
<script src="js/main.js"></script>
<script src="js/how-to-play.js"></script>
</body>
</html>