-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
72 lines (47 loc) · 1.49 KB
/
home.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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>
<!--Page Content-->
<section>
<h2>Welcome to the home of TLA Consulting</h2>
<p>Please take some time to get to know us</p>
<p>We specialise in serving your business needs and hope to hear from you soon.</p>
</section>
<!--Page footer-->
<footer>
<p>© TLA Consulting Pty LTD.</p>
<p>Please see our <a href="legal.php"> legal information page.</a></p>
</footer>
</body>
</html>