-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
28 lines (28 loc) · 956 Bytes
/
header.html
File metadata and controls
28 lines (28 loc) · 956 Bytes
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
<header>
<link rel="stylesheet" href="./Styles/header.css">
<link rel="icon" href="Images/icon.png" type="image/gif" sizes="16x16">
<div id="header">
<div id="banner">
<div id="logo">
<a href="./frontPage.php">Typing Wizard</a>
</div>
<form action="logout.php" method="POST">
<input id="logout" type="submit" value="Logout">
</form>
</div>
<div id="nav">
<div class="navLink">
<a href="./lessons.php">Course</a>
</div>
<div class="navLink">
<a href="./practice.php">Practice</a>
</div>
<div class="navLink">
<a href="./games.php">Games</a>
</div>
<div class="navLink">
<a href="./statistics.php">Statistics</a>
</div>
</div>
</div>
</header>