-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooks.html
90 lines (72 loc) · 4.35 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<!-- Final Project: Contact page -->
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="css/projectstyles.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This is an overview page about how we handle books and what we think about them">
<link href="https://fonts.googleapis.com/css?family=Dokdo" rel="stylesheet">
<link rel="icon" href="favicon.ico">
<title>Books and Mortar | Books</title>
</head>
<body>
<header><img class="banner" src="images/books-and-mortar.jpg" alt="Banner of the company"></header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li class="dropdown">
<a href="books.html">Books</a>
<div class="phone-desktop dropdown-content">
<a href="newarrivals.html">New Arrivals</a>
<a href="bestsellers.html">Best Sellers</a>
<a href="staffpicks.html">Staff Picks</a>
</div>
<ul class="sub-ul">
<li class="phone-mobile"><a href="newarrivals.html">New Arrivals</a></li>
<li class="phone-mobile"><a href="bestsellers.html">Best Sellers</a></li>
<li class="phone-mobile"><a href="staffpicks.html">Staff Picks</a></li>
</ul>
</li>
<li><a href="events.html">Events</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="cafemenu.html">Cafe</a></li>
</ul>
</nav>
<div id="content">
<h1>Books, books, and more books!</h1>
<article>
<h2>What to expect when you walk in:</h2>
<p class="p-books">Welcome, to the wonderful world of literature! As a Brick and Mortar book store, we endeavor to bring you as many books as we possibly can, in as physical a form as we can manage. We have an in-store collection of over 23,000 books, in any and every genre you could imagine, from cook books to science fiction!
<br> <br>In addition to our paperback and hard covers, we also have a multitude of kindle tablets available in the store for your use, with access to thousands more books online that are open to your perusal. We specialize in books, and as such we want to expose you to as much of the literary world as we possibly can. Please, come on in and read for a while!</p>
<img class="coupon" src="images/bookspage2.jpg" alt="Picture of an avid book lover">
</article>
<article>
<h2>How did we acquire our collection?</h2>
<p class="p-books2">Many of our books are acquisitions from mainstream printing companies such as:</p>
<ul>
<li class="p-books2">Quebecor World</li>
<li class="p-books2">Banta Corporation</li>
<li class="p-books2">Von Hoffmann</li>
<li class="p-books2">Transcontinental Printing</li>
</ul>
<p class="p-books2">Some writers have specifically come to us to have their books published and printed, which is a service we can provide upon request, in which case we usually go through Chronicle or Sourcebooks Publishing companies, and from there it is sent to any of the book manufacturing companies listed above. This is a less frequently occurring situation, but is always a special experience for us as a store, to witness the birth of a writer!
<br> <br> Our last method is purchases from other book stores. The literary community is all about the spread of information and literacy, and as such it is common practice to make extra wares available to other stores for purchase. We purchase from anyone who is willing to share what they have in stock, whatever it may be, all for the betterment of our readers and customers!</p>
<img class="bookspage" src="images/bookspage5.jpg" alt="Photo of book store shelves">
</article>
<article>
<h2 class="centered">If you would like to see a small sampling of our books, please follow the following links:</h2>
<ul class="ul-links">
<li class="li-links"><a class="linkul" href="newarrivals.html">New Arrivals</a></li>
<li class="li-links"><a class="linkul" href="bestsellers.html">Best Sellers</a></li>
<li class="li-links"><a class="linkul" href="staffpicks.html">Staff Picks</a></li>
</ul>
</article>
</div> <!-- end id=content -->
<footer>
<p>© Books and Mortar.<br>Client Support: <a class="phone-mobile" href="tel:6164667743">(616) 466-7743</a><span class="phone-desktop">(616) 466-7743</span></p>
</footer>
</body>
</html>