-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
47 lines (47 loc) · 1.25 KB
/
contact.html
File metadata and controls
47 lines (47 loc) · 1.25 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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Projects From Space</title>
<link href="style.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<section class="top">
<div class = "logo">
<a href="index.html">
<p class="header">
Devin Jay
</p>
</a>
</div>
<ul class = "navigation">
<li class="navi">
<a href="contact.html">
<span class="header">
Contact
</span>
</a>
</li>
</ul>
</section>
<section class="contactInfo">
<br>
<br>
<h1>
Contact Information
</h1>
<p>
Email: <a href="mailto:dds324@nau.edu">dds324@nau.edu</a>
<br>
LinkedIn: <a href="https://www.linkedin.com/in/devin-jay/" target="_blank">https://www.linkedin.com/in/devin-jay/</a>
</p>
<br>
<br>
<br>
<br>
</section>
</body>
</html>