-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooks.html
75 lines (69 loc) · 2.18 KB
/
books.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Probably Matt's Book Tracker 🐝</title>
<meta name="description" content="Book Tracker">
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<!--copy here -->
<div class="pagesthing">
<a href="index.html">main page </a> <!--a fancy space-->
<a href="projects.html">projects</a> <!--a fancy space-->
<a href="blender.html">blender things</a> <!--a fancy space-->
<a href="books.html">book tracker [ended]</a> <!--a fancy space-->
<br>
</div>
<!--paste there-->
<div class="borderthings">
<div class="intropart">
<div class="titlething">
<h1>my html based book list/tracker</h1>
<div class="intropart" >
<p>
i needed a place to track my books, and to shame myself into reading them, and well here it is
</p>
</div>
</div>
</div>
</div>
<br>
<table style="width:100%">
<tr>
<th>Title</th>
<th>Author</th>
<th>Genre</th>
<th>Pages Read</th>
<th>Total Pages</th>
<th>Progress</th>
</tr>
<tr>
<td>Louis Theroux: Gotta Get Theroux This</td>
<td>Louis Theroux</td>
<td>Non-Fiction</td>
<td>10</td>
<td>394</td>
<td><progress value="10" max="394"></progress></td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
<br>
<p>
ok so i realized that people have made things like this before so I have paused this. a search for "book tracker" didnt get much but ontoTheme github there are plenty! <a href="https://mylibrary.io/">mylibrary.io</a> seems good to me !
<br><br>
please send a pull to add any "books" you want but please leave
<a href="https://www.w3schools.com/html/html_tables.asp"> eve jackson </a> :^)
</p>
<!--copy-->
<h5>
i bet this looks awful on mobile <br>
copyright 🤷 2020
</h5>
<!--paste-->
</body>
</html>