-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
48 lines (34 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<title>Jess Strzempko</title>
<style>
</style>
<!-- Adding styling info for page layout by reading in a CSS file -->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<h1 style="text-align: center;">Jess Strzempko</h1>
<!-- Add multiple pages to web page-->
<!-- active class displays the grey box around current page-->
<ul>
<li style="text-align: center;"><a href="index.html" target="_self">Home</a>
<a href="portfolio.html" target="_self">Portfolio</a>
<a href="resume.html" target="_self">Resume</a>
<a class=active href="contact.html" target="_self">Contact</a>
</li>
</ul>
</header>
<div style="width: 70%; margin: 60px auto; padding-top: 150px">
<p style="text-align: center;">Feel free to reach out to me using the below contact information. I am open to both personal and professional inquiries.</p>
<p style="text-align: center;">Email: jessstrzempko@gmail.com</p>
<p style="text-align: center;">Phone: 508-479-3279</p>
<p style="text-align: center;">LinkedIn: <a href="https://www.linkedin.com/in/jessica-strzempko/">Jessica Strzempko</a></p>
<p style="text-align: center;">GitHub: <a href="https://github.com/jstrzempko">jstrzempko</a></p>
<p style="text-align: center;"><img src="images/paloduro.jpg" width=75%>
</div>
<script>
</script>
</body>
</html>