-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactme.html
32 lines (25 loc) · 1.17 KB
/
contactme.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
<!DOCTYPE html>
<html>
<head>
<title>Contact Me</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link href="style.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/9e5e5e9812.js" crossorigin="anonymous"></script>
</head>
<body style="background-color: #f8eee1; color: black;">
<br><br><br><br><br><br><br><br><br><br><br>
<h1 id = "ContactMe"><i><b>Contact Me</b></i></h1>
<p align="center">
<a href = "https://www.linkedin.com/in/jacob-roedel-/" class="fab fa-linkedin" target="_blank"></a>
<a href = "https://github.com/JacobRoedel" class="fab fa-github" target="_blank"></a>
</p>
<p style="font-size: 20px; font-family: garamond;" ><b></b>
<span class="fas fa-envelope fa-lg"> </span>
<b>[email protected]</b>
</p>
<button onclick="window.location.href = 'index.html';" id = "back">Back To Main Page</button>
<script>
var back = document.getElementById("back");
</script>
</body>
</html>