-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
34 lines (30 loc) · 1.08 KB
/
Copy pathcontact.html
File metadata and controls
34 lines (30 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>Contact Me</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="./index.html">About Me</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
</header>
<h1>Email me at</h1>
<a href="mailto:sheldonmcorkery@gmail.com">sheldonmcorkery@gmail.com<br></a>
<p></p>
</body>
<footer>
<p>Check me out on:</p>
<a href="https://www.github.com/sheldoncork" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/sheldon-corkery-33b443327/" target="_blank"><i class="fab fa-linkedin"></i></a>
<p>© 2024 Sheldon Corkery</p>
</footer>
</html>