-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.html
48 lines (47 loc) · 3.22 KB
/
tools.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<link href="styles.css" rel="stylesheet">
<title>Reading to Learn | Tools</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="https://jamiepalatnik.github.io/reading-to-learn/">Reading to Learn</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="https://jamiepalatnik.github.io/reading-to-learn/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://jamiepalatnik.github.io/reading-to-learn/background">Background</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="https://jamiepalatnik.github.io/reading-to-learn/tools">Tools</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://jamiepalatnik.github.io/reading-to-learn/my-blog">My Blog</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="p-4">
<h1>Tools</h1>
<p>On this page I will discuss my reading workflow and the tools I use.</p>
<p>My library cards are probably my most valuable reading tool, since I check out most of the books I read from public libraries. A few years ago I got a Kindle Paperwhite, and now I'm reading mainly ebooks that I check out from the library using the Libby app.</p>
<p>That's pretty much all I need, although I also love pillows, a cozy blanket, snacks, and drinks for the most cozy reading sessions. I keep a reading list on my Notes app with books I'd like to read, and I report on many of the books I've read on <a href="https://jamiepalatnik.github.io/reading-to-learn/my-blog">my blog.</a></p>
</main>
<footer class="fixed-bottom p-2 bg-light">
This site was created to complete the <a href="https://cs50.harvard.edu/x/2024/psets/8/homepage/">Homepage</a> assignment from CS50x.
</footer>
</body>
</html>