-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooks.html
More file actions
37 lines (33 loc) · 1.14 KB
/
books.html
File metadata and controls
37 lines (33 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Books — Your Name</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header class="fade-in">
<h1>Books I've Read</h1>
<nav>
<a href="index.html">Now</a>
<a href="books.html" class="active">Books</a>
<a href="movies.html">Movies</a>
</nav>
</header>
<main>
<section id="books-list">
<ul>
<li class="fade-in delay-1"><strong>Walden</strong> — Henry D. Thoreau <span class="stars">★★★★☆</span></li>
<li class="fade-in delay-2"><strong>Atomic Habits</strong> — James Clear <span class="stars">★★★★★</span></li>
<li class="fade-in delay-3"><strong>Into the Wild</strong> — Jon Krakauer <span class="stars">★★★★☆</span></li>
</ul>
</section>
</main>
<footer class="fade-in delay-4">
<p>© 2025 Your Name</p>
</footer>
<script src="script.js"></script>
</body>
</html>