-
Notifications
You must be signed in to change notification settings - Fork 0
/
bestsellers.html
54 lines (49 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="css/normalize.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200;0,8..60,300;0,8..60,400;0,8..60,500;0,8..60,600;0,8..60,700;0,8..60,800;0,8..60,900;1,8..60,200;1,8..60,300;1,8..60,400;1,8..60,500;1,8..60,600;1,8..60,700;1,8..60,800;1,8..60,900&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=DM+Serif+Display:ital@0;1&family=Elsie+Swash+Caps:wght@400;900&display=swap"
rel="stylesheet"
/>
<title id="bestsellers-page-title">Bestsellers List</title>
</head>
<body>
<header>
<a href="index.html" class="center">
<h1 class="booksterLogo">Bookster</h1>
</a>
</header>
<section class="result-banner">
<div class="result-banner-mid-div">
<h2 id="category-title">Bestsellers List</h2>
</div>
</section>
<section class="result-section-container">
<div id="category-top-5"></div>
</section>
<footer>
<div id="footer-first-line"></div>
<div id="footer-second-line">
<p id="footer-text">Built by Fran and Lucien</p>
</div>
</footer>
<script src="javascript/ny-times.js"></script>
</body>
</html>