-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
56 lines (50 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<title>Contact | Matthew McMillan</title>
<!-- Meta Info -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="keywords" content="Matthew McMillan, Contact, Research, Mathematics, Physics, Philosophy">
<meta name="description" content="Contact Information for Matthew McMillan">
<!-- titling font -->
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital@0;1&family=Open+Sans&display=swap" rel="stylesheet">
<!-- regular font -->
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="img/Favicon2transp.png">
<meta name=viewport content="width=device-width, initial-scale=1">
<link href="site_styles.css" rel="stylesheet">
<style>
#main {
text-align:center;
height:470px;
}
</style>
</head>
<body>
<div class="navbar" id="my-navbar">
<div class="branding">
<h3><a href="index.html#bio">Matthew McMillan</a></h3>
</div> <!-- end #branding -->
<div id="nav-elt">
<ul>
<li><a href="leibniz.html">Leibniz</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="essays.html">Essays</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</div> <!-- end #nav-elt -->
<div class="contact">
<h3><a href="contact.html">Contact</a></h3>
</div> <!-- end .contact -->
</div> <!-- end .navbar -->
<div id="header">
<h1>Contact</h1>
</div> <!-- end #header -->
<div id="main">
<a href="mailto:[email protected]">[email protected]</a>
</div> <!-- end #main -->
<div id="footer">
©Matthew McMillan 2021
</div> <!-- end #footer -->
</body>
</html>