-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudiobooks.html
78 lines (75 loc) · 2.72 KB
/
audiobooks.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
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Audiobooks</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="audiobooks.css">
</head>
<body>
<h1 class="jumbotron">Audiobooks</h1>
<div class="bookshelf">
<div class="book in_progress">
<span class="title">Radical Acceptance</span>
<span class="length">9 hr, 49 min</span>
</div>
<div class="book completed">
<span class="title">A Sky Beyond the Storm</span>
<span class="length">13 hr, 46 min</span>
</div>
<div class="book">
<span class="title">Rewire</span>
<span class="length">10 hr, 18 min</span>
</div>
<div class="book">
<span class="title">Critical Business Skills for Success</span>
<span class="length">31 hr, 18 min</span>
</div>
<div class="book">
<span class="title">Homo Deus</span>
<span class="length">7 hr, 25 min</span>
</div>
<div class="book completed">
<span class="title">Cat's Cradle</span>
<span class="length">7 hr, 11 min</span>
</div>
<div class="book">
<span class="title">Man's Search for Meaning</span>
<span class="length">4 hr, 44 min</span>
</div>
<div class="book">
<span class="title">The Connected Child</span>
<span class="length">6 hr, 49 min</span>
</div>
<div class="book">
<span class="title">Algorithms to Live By</span>
<span class="length">11 hr, 50 min</span>
</div>
<div class="book">
<span class="title">A More Beautiful Question</span>
<span class="length">7 hr, 54 min</span>
</div>
<div class="book">
<span class="title">Resilient</span>
<span class="length">7 hr, 29 min</span>
</div>
<div class="book">
<span class="title">Elon Musk</span>
<span class="length">13 hr, 23 min</span>
</div>
<div class="book">
<span class="title">Atonement</span>
<span class="length">14 hr, 14 min</span>
</div>
<div class="book">
<span class="title">Superintelligence</span>
<span class="length">14 hr, 17 min</span>
</div>
<div class="book">
<span class="title">Brain Rules</span>
<span class="length">7 hr, 40 min</span>
</div>
</div>
</body>
</html>