-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (112 loc) · 4.09 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="" content="" />
<meta http-equiv="X-UA-Compatible" content="IE=7,8,edge" />
<meta name="locale" property="og:locale" content="en_US" />
<meta
name="title"
property="og:title"
content="MiLibre | Your Personal Online book-tracker"
/>
<meta http-equiv="refresh" content="text/html;charset=UTF-8" />
<meta
name="description"
property="og:description"
content="MiLibre is a personal online book-tracker"
/>
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/nomalize.css" />
<script src="js/index.js" defer></script>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
/>
<title>MiLibre | Online Book-tracker</title>
</head>
<body>
<header>
<div class="site-logo">MiLibre</div>
<div class="toggle-nav">☰</div>
</header>
<nav class="navigation" role="navigation">
<ul>
<li>
<a href="https://github.com/Igwefran6/milibre-book-tracker"
>Source Code</a
>
</li>
<li><a href="https://github.com/Igwefran6">About Author</a></li>
</ul>
</nav>
<button class="add-new-book">+ Add New Book</button>
<dialog class="dialog">
<form id="bookForm">
<div class="dialog-inputs">
<input
class="dialog-input"
type="text"
name="book-title"
id="book-title"
placeholder=" "
required
max="24"
/>
<span class="dialog-input-label">title</span>
</div>
<div class="dialog-inputs">
<input
class="dialog-input"
type="text"
name="book-author"
id="book-author"
placeholder=" "
required
max="24"
/>
<span class="dialog-input-label">author</span>
</div>
<div class="dialog-inputs">
<input
class="dialog-input"
type="number"
name="book-page-count"
id="book-page-count"
placeholder=" "
required
/>
<span class="dialog-input-label">page number</span>
</div>
<div class="dialog-inputs">
<input
class="checkbox"
type="checkbox"
name="isRead"
id="isRead"
/>
<label for="isRead">Have you read the book?</label>
</div>
<div class="btn-group">
<input
class="btn ok"
type="submit"
value="Ok"
form="bookForm"
/>
<input class="btn cancel" type="button" value="Cancel" />
</div>
</form>
</dialog>
<main id="main">
<div class="books"></div>
</main>
<div class="screen-too-small">
Oops: your screen is too small for this website.
</div>
<div onclick="dialog.showModal()" class="no-books-yet">
No book yet... <span>Click to add some!</span>
</div>
</body>
</html>