-
Notifications
You must be signed in to change notification settings - Fork 0
/
credits.html
91 lines (80 loc) · 3.64 KB
/
credits.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Louisville in 1922: Credits</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>Credits</h1>
</div>
<div class="alt-body">
<div class="credits-newspaper-wrapper">
<div class="credits-body">
<h2>Newspaper</h2>
<p>All newspaper articles obtained from the Louisville Courier-Journal, strictly from content
dated to the year 1922 and thus in the public domain. All transcriptions of the articles
have been newly created solely for this project.</p>
</div>
</div>
<div class="credits-photo-wrapper">
<div class="credits-body">
<h2>Photography</h2>
<p>Kentucky scenes: Main Street, Louisville, showing Carter Dry Good Co.</p>
<p>Photographer: Caulfield & Shook</p>
<p>Year: circa. 1922</p>
<p>Rights: Public Domain</p>
<p>Source: <a href="https://www.loc.gov/item/2016649430/">Library of Congress</a></a></p>
</div>
<img class="credits-image" src="images/1922Louisville1.jpg"
alt="Main Street, Louisville circa 1922">
</div>
</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>