-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
45 lines (42 loc) · 1.51 KB
/
contact.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
<!DOCTYPE HTML>
<html>
<head>
<title>tombarber.me</title>
<meta name="description" content="website description" />
<meta name="keywords" content="website keywords, website keywords" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="style/style.css" title="style" />
</head>
<body>
<div id="main">
<div id="header">
<div id="logo">
<div id="logo_text">
<h1>Tom Barber</a></h1>
</div>
</div>
<div id="menubar">
<ul id="menu">
<!-- put class="selected" in the li tag for the selected page - to highlight which page you're on -->
<li><a href="index.html">Home</a></li>
<li><a href="collection.html">Collection</a></li>
<li><a href="links.html">Links</a></li>
<li class="selected"><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div id="site_content">
<div id="content">
<!-- insert the page content here -->
<h1>Contact Me</h1>
<p>There are a few ways to contact me. Through my <a href="https://www.linkedin.com/in/tom-barber-37906023/">LinkedIn</a>, or by emailing me at: <br> <b>(My firstname) @ (this website domain)</b></p>
</div>
</div>
<div id="footer">
Contents © Tom Barber
<br>
Website design modified from Black_White template from <a href="https://www.html5webtemplates.co.uk/templates/" target="blank">html5webtemplates.co.uk<a>
</div>
</div>
</body>
</html>