-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
55 lines (49 loc) · 1.92 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Jamie Reardon's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="normalize.css">
<link href="https://fonts.googleapis.com/css?family=Rajdhani" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name">Jamie Reardon</li>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<header>
<img src="images/profile-photo.png" alt="Profile Photo of Jamie Reardon" class="profile-image">
<h1 class="tag name">Hi, I'm Jamie Reardon.</h1>
<p class="tag location">I am from Liverpool, England.</p>
</header>
<main class="flex">
<div class="card flex">
<section>
<h2>General Information</h2>
<p>I am currently looking for work. If you have any questions please contact me. I am available for speaking gigs and similar engagements.</p>
<p>The best way to reach me is via email or twitter.</p>
</section>
<section>
<h2>Contact Details</h2>
<ul class="contact">
<li class="mail-icon"><a href="mailto:decor1878@gmail.com">decor1878@gmail.com</a></li>
<li class="twitter-icon"><a href="http://twitter.com/intent/tweet?screen_name=jmereardon17">@jmereardon17</a></li>
</ul>
</section>
</div>
</main>
<footer>
<ul>
<li><a href="http://twitter.com/jmereardon17" target="_blank" class="social twitter">Twitter</a></li>
<li><a href="https://github.com/jmereardon17" target="_blank" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2019, Jamie Reardon</p>
</footer>
</body>
</html>