-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
73 lines (62 loc) · 2.63 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Louisville in 1922: Contact</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="images/favicon-32.png" sizes="32x32">
<link rel="shortcut icon" href="images/favicon-128.png" sizes="128x128">
<link rel="shortcut icon" href="images/favicon-180.png" sizes="180x180">
<link rel="shortcut icon" href="images/favicon-192.png" sizes="192x192">
<link rel="stylesheet" href="css/styles.css">
<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=Diplomata+SC&family=EB+Garamond:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet">
</head>
<body>
<header>
<div class="header-top">
<img class="fleurdelis-left" src="images/fleurdelis.png" alt="Fleur de lis">
<!-- // Edited from the public domain image at https://freesvg.org/1533961979 -->
<h1 class="page-header">Louisville in 1922</h1>
<img class="fleurdelis-right" src="images/fleurdelis.png" alt="Fleur de lis">
<div class="hamburger-menu" onclick="menuFunction()">
<div class="hamburger-lines"></div>
<div class="hamburger-lines"></div>
<div class="hamburger-lines"></div>
</div>
<!-- // Edited from the pulic domain image at https://freesvg.org/1533961979 -->
</div>
<nav id="nav-menu">
<ul class="menu-set">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="credits.html">Credits</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<p id="date-display1"></p>
<p id="date-display2"></p>
</header>
<main>
<div class="main-alt-container">
<div class="alt-header">
<h1>Contact</h1>
</div>
<div class="alt-body">
<p class="contact-body">This site was created by M.J. Brechner. Check out more of my coding projects at my
<a href="https://github.com/mjbrechner">GitHub</a> page.</p>
</div>
</div>
</main>
<footer>
<p>
<script>document.write(`Copyright © 2022-${new Date().getFullYear()} M.J. Brechner`);</script>
</p>
</footer>
<script src="javascript/menu.js"></script>
</body>
</html>