-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
64 lines (59 loc) · 2.19 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Contact Me | Peter Adam's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body id="contact-me">
<div class="main-nav">
<ul class="nav">
<li class="name">Peter Adams</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="contact.html" class="selected">Contact</a></li>
</ul>
</div>
<header>
<img src="images/HalfMeEyes2.JPG" alt="Picture of my eyes during halloween" class="profile-image">
<h1 class="tag name">Hello, I’m Peter & its nice to meet you.</h1>
<p class="tag location">I live in London, UK.</p>
</header>
<main class="flex">
<div class="card">
<img src="images/contactme.png" alt="contact us" class="contact-us-img">
</div>
<div class="card">
<h2>I can't wait to hear from you</h2>
<p>If you are interested in contacting me for a project, or giving me the next winning lottery numbers, then you can contact me using the following mediums.</p>
<ul class="contact-us-links">
<li>
twitter:
<a href="http://twitter.com/intent/tweet?screen_name=tcherokee">@tcherokee</a>
</li>
<li>
email:
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li>
phone:
<a href="tel:0555-324543">0555-324543</a>
</li>
<li>
github:
<a href="https://github.com/tcherokee">tcherokee</a>
</li>
</ul>
<p>Looking forward to hearing from you.</p>
</div>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/tcherokee" class="social twitter">Twitter</a></li>
<li><a href="https://github.com/tcherokee" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2015, Peter Adams</p>
</footer>
</body>
</html>