-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotes.html
56 lines (56 loc) · 1.9 KB
/
quotes.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="LoGH fan site and discussions">
<meta name="keywords" content="LoGH, Legend of the Galactic Heroes, Yang Wen-li,
Reinhard von Lohengramm, anime, Ginga Eiyū Densetsu, Yoshiki Tanaka">
<meta name="author" content="Chris Moore">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Legend of the Galactic Heroes Hub</title>
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<link rel="stylesheet" href="styles.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KLTSZ4DFR5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KLTSZ4DFR5');
</script>
<!-- Quote function -->
<script src="script.js"></script>
</head>
<body>
<div class="nav">
<img src="assets/icon.png" alt="LoGH Hub Icon" height="64" width="64">
<p id="navtext">
<a href = index.html>Home</a>
<a href = char-analyses.html>Character Analyses</a>
<a href = theme-discussions.html>Theme Discussions</a>
<a href = quotes.html>Quotes</a>
<a href = polls.html>Polls</a>
</p>
</div>
<section>
<h1>Quotes</h1>
</section>
<div class = "container">
<section class="quotes">
<p id="quote"> </p>
<br>
<p id="author"> </p>
<br>
<button onclick="getRandomQuote()" class="button">Get a new LoGH quote</button>
<br>
</section>
</div>
<div class="space">
</div>
<footer>
<p>
<strong>Legend of the Galactic Heroes Hub | Chris Moore, 2024</strong>
</p>
</footer>
</body>
</html>