-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
30 lines (26 loc) · 864 Bytes
/
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
<!doctype=html>
<html lan="en">
<head>
<meta charset="utf-8">
<title>Contact</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/styles.css">
</head>
<div class="header">
<h1>Tom Lotze</h1>
</div>
<ul>
<li><a href="index.html">Tom Lotze</a></li>
<li><a href="about.html">About</a></li>
<li><a class='active' href="contact.html">Contact</a></li>
</ul>
<body>
<p>
One can find my contact details here;
</p>
<div class="footer">
<a class="icon" href="https://linkedin.com/in/tom-lotze/" target="_blank"><img src="media/Linkedin_logo.png" style="height: 30px" title="Visit LinkedIn" ></a>
<a class="icon" href="https://github.com/Tom-Lotze" target="_blank"><img src="media/github_logo.png" style="height: 30px" title="Visit Github"></a>
</div>
</body>
</html>