-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.php
26 lines (26 loc) · 1.02 KB
/
help.php
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
<html>
<head>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="top-bar">
<div class="top-bar-item"><a href="index.php">Play</a></div>
<div class="top-bar-item"><a href="help.php">Help</a></div>
<div class="top-bar-item"><a href="scores.php">Leaderboard</a></div>
</div>
<div class="button-top" onclick="document.body.scrollTop = 0; document.documentElement.scrollTop = 0;"><img class="button-top-icon" src="up-arrow.svg"/></div>
<div class="bottom-bar">
<div class="bottom-text">christosnc © 2018. All rights reserved.</div>
</div>
<form class="box">
<div class='page-title'>Instructions</div>
<div class='instructions'>
<div>Hello!</div>
<div>This is a simple quiz game to test your knowledge of the C language.</div>
<div>Each game consists of 5 multiple choice questions.</div>
<div>At the end, you will be presented with your score and stats.</div>
<div>Have fun!</div>
</div>
</form>
</body>
</html>