-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
47 lines (44 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Jenna Espezua | Contact</title>
<meta charset= "utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,600|Dosis:400,700,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/default.css" >
<link rel="stylesheet" type="text/css" href="stylesheets/responsive.css" >
</head>
<body>
<header>
<a href="index.html" class="logo">
<h1>Jenna Espezua</h1>
<h2>Web Developer</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html" >About</a></li>
<li><a href="portfolio/index.html">Portfolio</a></li>
<!-- <li><a href="resume.html">Resume</a></li> -->
<li><a href="blog/index.html">Blog</a></li>
<li><a href="edtech.html">EdTech</a></li>
<li><a href="contact.html" class="selected">Contact</a></li>
</ul>
</nav>
</header>
<main class="wrapper-main">
<section class="contact-info">
<h3>Contact Information</h3>
<p>If you would like to connect with me you may email me at <a href="mailto:[email protected]">[email protected]</a> or by using the icons that are at the bottom of each page on my website. Contacting me via email guarantees the quickest response.</p>
</section>
</main>
<footer>
<ul class="contact-links-footer">
<li><a href="mailto:[email protected]"><img src="imgs/gmail.png" alt="Email" /></a></li>
<li><a href="https://github.com/espezua"><img src="imgs/GitHub.png" alt="GitHub" /></a></li>
<li><a href="https://www.linkedin.com/in/jennaespezua"><img src="imgs/linkedIn.png" alt="LinkedIn" /></a></li>
</ul>
<p>© 2015 Jenna Espezua</p>
</footer>
</body>
</html>