-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
130 lines (117 loc) · 6.15 KB
/
index.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cuckoos Library</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<section class="hero is-fullheight">
<section class="section" id="section-1">
<div class="container">
<div class="columns">
<div class="column is-half">
<div class="main-title ">
<a href="./"><h1 class="is-size-1 is-warning has-text-weight-bold has-text-centered" id="book_title"><img src="./assets/images/chocobo.png" style="width: 3rem;" alt="">Cuckoo's Library</h1></a>
</div>
</div>
<div class="column is-one-tenths"></div>
<div class="column is-half">
<div class="notification has-text-centered" id="navbar">
<button class="button is-rounded is-medium" style="padding: 0.6rem;" id="search-btn"><a style="text-decoration: none;" href="#SearchSection">Search</a></button>
<button class="button is-rounded is-medium" style="padding: 0.6rem;" id="code-quiz"><a style="text-decoration: none;" href="#book-finder-quiz">Genre Quiz</a></button>
<button class="button is-rounded is-medium" style="padding: 0.6rem;" id="saved-book"><a style="text-decoration: none;" href="./savedBooks.html">Saved Books</a></button>
<button class="button is-rounded is-medium" style="padding: 0.6rem;" id="contact-btn"><a style="text-decoration: none;" href="https://github.com/AbhiBiju/Cuckoos-Library/">Github Repo</a></button>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="columns">
<div class="column is-one-third" >
<div class="container">
<div class="bookOfTheMonth" id="bookOfTheMonth-column">
<div class="section">
<figure class="image">
<img src="./assets/images/jurassicPark.jpeg" style="max-width:fit-content">
</figure>
</div>
<br>
<div>
<h5 class="book_of_month_1 has-text-centered has-text-weight-bold">Book of the Month</h5>
<h4 class="book_of_month_2 has-text-centered has-text-weight-bold">July 2021</h4>
<br>
</div>
</div>
</div>
</div>
<div class="column"></div>
<div class="column is-half" id="book-finder-quiz">
<div class="book-finder-quiz">
<div class="book-finder is-text-centered">
<h4 class="quiz_page_1 has-text-centered has-text-weight-bold">Need a New Read?</h4>
<h4 class="quiz_page_2 has-text-centered has-text-weight-bold">Take our Book Finder Quiz!</h4>
<div class="column is-flex-row">
<section class="container has-text-centered">
<div class="container has-text-centered"id="gif-placeholder">
<img class="pic-gif-placeholder has-text-centered has-text-weight-bold" id="topicGif">
</div>
</section>
<section class="section has-text-centered">
<button class="button is-rounded is-medium" id="startBtn">Start Quiz!</button>
</section>
<div class="has-text-centered" id="question"></div>
<div class="container is-flex is-flex-direction-column is-flex-wrap-nowrap has-text-centered" id="topics"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="hero is-fullheight">
<section class="section" id="SearchSection">
<div class="container">
<div class="columns">
<div class="column is-one-third">
<div class="container">
<div class="image-gif-holder">
<section class="section has-text-centered is-flex-column-wrap" id="newBooks">
</section>
</div>
</div>
</div>
<div class="column">
<div class="search-by-option is-warning has-text-centered">
<div class="title" id="search-by">Search By:</div>
<div class="title" id=title_holder>Title:</div>
<div class="title-input">
<input type="text" id="titleSearch" placeholder="Title of the Book"></input>
</div>
<div class="title" id="author">Author:</div>
<div class="author-input">
<input type="text" id="authorSearch" placeholder="Name of the Author"></input>
</div>
<div class="title" id="genre">Genre:</div>
<div class="genre-input">
<input type="text" id="genreSearch" placeholder="Genre"></input>
</div>
<section class="section has-text-centered">
<button class="button is-rounded is-medium has-text-weight-bold" id="bookSearchBtn">Search</button>
</section>
</div>
</div>
</div>
</div>
</section>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>