-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworks.html
More file actions
90 lines (73 loc) · 3.4 KB
/
works.html
File metadata and controls
90 lines (73 loc) · 3.4 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="custom.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=Roboto:wght@400;900&family=Source+Sans+3:wght@300;400&display=swap" rel="stylesheet">
<title>Seanan McGuire | Works</title>
</head>
<body>
<div class="wrapper">
<header>
<div class="top-bar">
<h2 class="home"> <a href="/">Seanan McGuire</a></h2>
<nav class="desktop">
<li> <a href="/about">About Seanan</a></li>
<li><a href="/news">Who's Mira Grant?</a></li>
<li><a href="/works">Works</a></li>
<a href="/extras"><button class="extras">Extras</button></a>
</nav>
<!-- Hamburger for mobile layout -->
<div class="hamburger-menu">
<input id="menu__toggle" type="checkbox" />
<label class="menu__btn" for="menu__toggle">
<span></span>
</label>
<ul class="menu__box">
<li><a class="menu__item" href="/about">About Seanan</a></li>
<li><a class="menu__item" href="/news">Who's Mira Grant?</a></li>
<li><a class="menu__item" href="/works">Works</a></li>
<li><a class="menu__item" href="/extras">Extras</a></li>
</ul>
</div>
</div>
</header>
<section class="banners">
<img src="assets/gabriella-clare-marino-Hx8HaI4ERkA-unsplash (1).jpg" alt="backpacking book">
</section>
<section class="hero">
<h1>Works</h1>
<p>Here is a list of Seanan McGuire's books broken down by each series and the reading order.</p>
<p>October Daye Series</p>
<ol>
<li>Rosemary and Rue (2009)</li>
<li>A Local Habitation (2010)</li>
<li>An Artificial Night (2010)</li>
<li>Late Eclipses (2011)</li>
<li>One Salt Sea (2011)</li>
<li>Ashes of Honor (2012)</li>
<li>Chimes at Midnight (2013)</li>
<li>The Winter Long (2014)</li>
<li>A Red-Rose Chain (2015)</li>
<li>Once Broken Faith (2016)</li>
<li>The Brightest Fell (2017)</li>
<li>Night and Silence (2018)</li>
<li>The Unkindest Tide (2019)</li>
<li>A Killing Frost (2020)</li>
<li>When Sorrows Come (2021)</li>
<li>Be the Serpent (2022)</li>
</ol>
</section>
<footer>
<p>Copyright © 2023 Jamal Park</p>
<p>All Rights Reserved</p>
</footer>
</div>
</body>
</html>