-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookdetail.html
44 lines (44 loc) · 1.52 KB
/
bookdetail.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
<!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>
<input id="search" placeholder="Title, Author, ISBN">
</header>
</div>
<main class="content results">
<header>
<h1>We Found <b>1</b> Book</h1>
</header>
<div class="full">
<div class="detail">
<div class="meta">
<h2>The User Experience Team of One: A Research & Design Survival Guide</h2>
<h3><a href="#">Leah Buhley</a></h3>
<h3 class="publisher"><a href="#">Rosenfeld Media</a>, 2013</h3>
</div>
</div>
</div>
<div class="detail">
<div class="book">
<img src="assets/img/17-Buhley.jpg" alt="The User Experience Team of One by Leah Buhley">
<form action="library.html">
<button>Add Book</button>
</form>
</div>
<div class="description">
<p>The User Experience Team of One prescribes a range of approaches that have big impact and take less time and fewer resources than the standard lineup of UX deliverables. Whether you want to cross over into user experience or you're a seasoned practitioner trying to drag your organization forward, this book gives you tools and insight for doing more with less.</p>
</div>
</div>
</main>
</div>
</body>
</html>