-
Notifications
You must be signed in to change notification settings - Fork 1
/
bestSellers.html
58 lines (48 loc) · 1.99 KB
/
bestSellers.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Kotobna - Best Sellers</title>
<link rel="stylesheet" href="styles/bestSellers.css">
<link rel="stylesheet" href="styles/book.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Merriweather">
<link rel="shortcut icon" type="image/png" href="assets/logo/favicon.png">
</head>
<body style="background-color: #f1e5d9; font-family: 'Kumbh Sans', sans-serif;">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;700&display=swap" rel="stylesheet">
<!-- Banner -->
<img src="assets/logo/Header.jpg" width="100%">
<!-- Navigator -->
<div class="topNav">
<a href="home.html">Home</a>
<a class="active" href="bestSellers.html">Best Sellers</a>
<a href="allBooks.html">All Books</a>
<a href="requestBook.html">Request A Book</a>
<a href="aboutUs.html">About Us</a>
<a href="login.html" id="loginNav">Login</a>
<a href="logout.html" id="logoutNav">Logout</a>
<a href="admin.html" id="adminNav">Admin</a>
</div>
<p class="bestSellers">
Best Sellers
</p>
<h1 class="bestSellersFooter">
Our most popular products based on market sales. Updated hourly!
</h1>
<div id="grid">
<div id="hBanner" class="first banner">
<img class="banner_cover" src="assets/covers/hpop.jpeg" width="100%">
<div class="banner_container">
<h1 class="banner_author">J.K. Rowling</h1>
<h1 class="banner_name">Harry Potter And The Order Of The Phoenix</h1>
<h1 class="banner_category">Novels</h1>
</div>
</div>
</div>
<footer style="float: right; margin-top: 50px; padding-bottom: 15px; padding-right: 50px; clear: both;">
© Copyright 2020 FCIS ASU
</footer>
<script src="scripts/loggedChk.js"></script>
<script src="scripts/bestSellers.js"></script>
</body>
</html>