-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.html
37 lines (37 loc) · 1.49 KB
/
library.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bookish — Your library, bookity split!™</title>
<link href="assets/css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="container">
<div class="full">
<header class="logo">
<h1><a href="index.html">Bookish</a></h1>
<form action="addbook.html">
<button>Add a Book to Your Library</button>
</form>
</header>
</div>
<main class="content">
<div class="full">
<header>
<h1>Library of <b>7</b> Books</h1>
</header>
</div>
<ul>
<li><a href="bookdetail.html"><img src="assets/img/17-Buhley.jpg" alt="The User Experience Team of One by Leah Buhley"></a></li>
<li><a href="#"><img src="assets/img/Ferrara-PlayfulDesign.jpg" alt="BPlayful Design by John Ferrara"></a></li>
<li><a href="#"><img src="assets/img/Kirkman-TheWalkingDead.jpg" alt="The Walking Dead: Volume 1 by Robert Kirkman"></a></li>
<li><a href="#"><img src="assets/img/Poehler-YesPlease.jpg" alt="Yes Please by Amy Poehler"></a></li>
<li><a href="#"><img src="assets/img/Rowling-HP01.jpg" alt="Harry Potter and the Sorcerer's Stone by J.K. Rowling"></a></li>
<li><a href="#"><img src="assets/img/Vaughan-Saga.jpg" alt="Saga: Volume 1 by Brian Vaughan"></a></li>
<li><a href="#"><img src="assets/img/Vaughan-YLastMan.jpg" alt="Y: The Last Man: Volume 1 by Brian Vaughan"></a></li>
</ul>
</main>
</div>
</body>
</html>