-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (88 loc) · 2.75 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
<!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">
<link rel="shortcut icon" type="image/x-icon" href="img/bookicon.ico">
<link rel="stylesheet" href="./style/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<script src="./js/infobox.js"></script>
<title>Bookers - all info about books</title>
<icon< /icon>
</head>
<header>
<!-- Navbar -->
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="">
<img src="./img/bookicon.svg" width="30">
<h1>Bookers</h1>
</a>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<button class="button is-info js-modal-trigger" data-target="modal">
<strong>Help</strong>
</button>
</div>
</div>
</div>
</div>
</nav>
</header>
<!-- Fine Navbar -->
<!-- <body background="./img/pattern.jpg" class="pattern"> -->
<!-- Search area -->
<section class="homeSection">
<div class="container">
<div class="field">
<i class="fa-solid fa-magnifying-glass"></i>
<h1 class="openingTitle">Bookers</h1>
<h2>Where all book lovers search info</h2>
</br>
<div class="control has-icons-left has-icons-right">
<input class="input is-medium is-rounded" type="email" placeholder="Search by category, author or title">
<span class="icon is-small is-left">
<i class="fas fa-envelope fa-xs"></i>
</span>
<span class="icon is-small is-right">
<i class="fas fa-check fa-xs"></i>
</span>
</div>
</div>
</div>
<!-- End search area -->
<div class="modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Informtion</p>
<button class="delete" aria-label="close"></button>
</header>
<section class="modal-card-body">
<p>Hello world</p>
<!-- Content ... -->
</section>
<footer class="modal-card-foot">
<button class="button is-success">Save changes</button>
<button class="button">Cancel</button>
</footer>
</div>
</div>
</body>
</section>
<!--
https://saranyamk.github.io/images-repo/book-top.svg
https://saranyamk.github.io/images-repo/book-side.svg
-->
<!-- Footer -->
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>Bookers</strong> by <a href="https://github.com/mattbrambilla">Mattia Brambilla</a>.
</p>
</div>
</footer>
</html>