-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
47 lines (34 loc) · 1 KB
/
header.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TLA Consulting Pty LTD</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<!---Page Header-->
<header>
<img src="logo.gif" alt="TLA Logo" height="70" width="70">
<h1>TLA Consulting</h1>
</header>
<!--Menu-->
<nav>
<div class="menuitem">
<a href="home.html">
<img src="s-logo.gif" alt="" height="20" width="20">
<span class="menutext">Home</span>
</a>
</div>
<div class="menuitem">
<a href="contact.html">
<img src="s-logo.gif" alt="" height="20" width="20">
<span class="menutext">contact</span>
</a>
</div>
<div class="menuitem">
<a href="about.html">
<img src="s-logo.gif" alt="" height="20" width="20">
<span class="menutext">About</span>
</a>
</div>
</nav>