-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
39 lines (38 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contact/Links</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="background.html">Background</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="software.html">Software</a></li>
<li><a href="contact.html">Contact/Links</a></li>
</ul>
</nav>
<header>
<h1>Contact/Links</h1>
</header>
<main>
<h1>Contact Information</h1>
<ul>
<p>I am currently working at McGill University in Montreal, Canada and I am interesting in tenure track faculty positions.</p>
<p>Please feel free to contact me via email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>You can also find my profile on these sites:</p>
<ul>
<li><a href="https://scholar.google.com/citations?user=FgIFO2IAAAAJ&hl=en&oi=sra" target="_blank">Google Scholar</a></li>
<li><a href="https://github.com/jordandekraker" target="_blank">GitHub</a></li>
<li><a href="https://twitter.com/jordandekraker" target="_blank">Twitter</a></li>
<li><a href="https://www.linkedin.com/in/jordan-dekraker-b70874125/" target="_blank">LinkedIn</a></li>
</ul>
</main>
<footer>
<p>Copyright © 2023 - Jordan DeKraker</p>
</footer>
</body>
</html>