-
Notifications
You must be signed in to change notification settings - Fork 0
/
result.html
70 lines (62 loc) · 2.54 KB
/
result.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
<!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
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 rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<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.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<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>Bookster</title>
</head>
<body>
<header class="result-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 class="result-banner-text">
Results for "<span id="query-name"></span>"
</h2>
</div>
</section>
<section class="result-section-container">
<div id="result-div">
<!-- lucien added for loading indicator -->
<div id="loading-indicator" style="display: none;">
<p style="text-align: center;">📚 Books loading... </p>
</div>
</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/result.js"></script>
</body>
</html>