-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhowtoplay.html
40 lines (40 loc) · 1.23 KB
/
howtoplay.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./images/favicon.png" type="image/x-icon" />
<link rel="stylesheet" href="./css/howtoplay.css" />
<link rel="stylesheet" href="./css/print.css" media="print" />
<title>How to play</title>
</head>
<body>
<a onclick="window.print()"
><div class="print"><h4>PRINT</h4></div></a
>
<div class="wrapper">
<h1>How to play</h1>
<p>
The goal of the game is to break all the bricks in the given time. You
have three lives, if you drop the ball you lose one. If you lose all
your lives, it's game over. Have fun!
</p>
<div class="img_container">
<img
class="img_pc"
src="./images/Instructions.png"
alt="Instructions"
/>
<img
class="img_mobile"
src="./images/Instructions_mobile.png"
alt="Instructions_mobile"
/>
</div>
<a href="./index.html"
><div class="back_button"><h4>BACK</h4></div></a
>
</div>
</body>
</html>