-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
77 lines (63 loc) · 3.14 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
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Contact Sean</title>
<link rel="icon" type="image/png" href="img/favicon-32x32.png" sizes="32x32" >
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./css/style.production.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header class="page-header">
<img src="img/SeanPSidersLogo.png" width="249" height="165" alt="Sean P Siders logo" class="page-header__item"> <!-- Placeholder for logo -->
<nav class="page-header__item">
<ul role="menubar" class="navigation-list">
<li role="presentation" class="container circleBehind">
<a href="index.html" role="menuitem" class="navigation-list__item navigation-list__item--active">Home</a>
</li>
<li role="presentation" class="container circleBehind">
<a href="about.html" role="menuitem" class="navigation-list__item">About Me</a>
</li>
<li role="presentation" class="container circleBehind">
<a href="work.html" role="menuitem" class="navigation-list__item">My Projects</a>
</li>
<li role="presentation" class="container circleBehind">
<a href="contact.html" role="menuitem" class="navigation-list__item">Contact</a>
</li>
</ul>
</nav>
</header>
<main>
<div>
<h1>Contact information:</h1>
Sean Philip Siders<br>
3656 Reichman Dr NW<br>
Dover, OH<br>
United States<br>
Tel : <a href="tel:+3302046251">(330)204-6251</a><br>
eMail : <a href="mailto:[email protected]">[email protected]</a><br>
LinkedIn : <a href="https://www.linkedin.com/in/sean-siders/" target="_blank">Sean Siders on LinkedIn</a><br>
Skype : <a href="skype:live:.cid.c66ca51468cbf170"> Sean Siders on Skype</a><br>
<br>
<h3>Please pass my information forward to anyone who may be interested in employing my unique skill set in the web development industry.</h3>
</div>
</main>
<footer class="page-footer">
<p>Find me on</p>
<div class="social-media">
<a href="https://github.com/SiderFace" target="_blank">
<img src="img/GitHubIcon.svg" alt="github">
</a>
<a href="https://twitter.com/SeanPSiders" target="_blank">
<img src="img/TwitterIcon.svg" alt="twitter">
</a>
<a href="https://www.linkedin.com/in/sean-siders-b42692298/" target="_blank">
<img src="img/LinkedInIcon.svg" alt="linkedin">
</a>
</div>
</footer>
<script src="js/tota11y.min.js"> </script>
</body>
</html>