-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (68 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Bookshelf Apps</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
</head>
<body>
<header class="head_bar">
<h1 class="head_bar__title">Bookshelf Apps</h1>
</header>
<main>
<section class="input_section">
<h2>Masukkan Buku Baru</h2>
<form id="inputBuku">
<div class="input">
<label for="inputBukuTitle">Judul</label>
<input id="inputBukuTitle" type="text" required />
</div>
<div class="input">
<label for="inputBukuAuthor">Penulis</label>
<input id="inputBukuAuthor" type="text" required />
</div>
<div class="input">
<label for="inputBukuYear">Tahun</label>
<input id="inputBukuYear" type="number" required />
</div>
<div class="input_inline">
<label for="inputBukuIsComplete">Selesai dibaca</label>
<input id="inputBukuIsComplete" type="checkbox" onclick="checkFinish()" />
</div>
<button id="bookSubmit" type="submit">Masukkan Buku ke Rak</button>
</form>
</section>
<div class="containerKanan">
<section class="search_section">
<h2>Cari Buku</h2>
<form id="searchBook">
<table>
<tr>
<td>
<i class="material-icons"></i>
</td>
<td><input id="searchBookTitle" type="text" onkeyup="searchBook()" placeholder="Cari Buku" /></td>
</tr>
</table>
</form>
</section>
<section class="book_shelf">
<h2>Belum selesai dibaca</h2>
<div id="incompleteBookshelfList" class="book_list"></div>
</section>
<section class="book_shelf">
<h2>Selesai dibaca</h2>
<div id="completeBookshelfList" class="book_list"></div>
</section>
</div>
</main>
<footer class="footer">
<p>© 2022 - Bookshelf Apps by Zuyyina</p>
</footer>
<script src="javascript.js"></script>
</body>
</html>