-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.php
More file actions
40 lines (40 loc) · 1.12 KB
/
practice.php
File metadata and controls
40 lines (40 loc) · 1.12 KB
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
<?php
if(!isset($_COOKIE['username']))
{
header("Location:login.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./Styles/practice.css">
<title>Practice</title>
</head>
<body>
<?php
include("./header.html");
include("./footer.html");
?>
<div id="container">
<div id="test">
<div class="cardTitle">
Typing Test
</div>
<div class="cardAbout">
Take a test on random words based on what you've learned till now. This will help you track your progress.
</div>
</div>
<div id="challenge">
<div class="cardTitle">
Typing Challenge
</div>
<div class="cardAbout">
Take up a challenge. Practice on paragraphs which will help you simulate real life situations where you can use touch typing.
</div>
</div>
</div>
</body>
<script src="./Js/practice.js"></script>
</html>