-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
105 lines (95 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
<!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>My Bookshelf — Managing your book properly</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link rel="stylesheet" href="./assets/main.css">
<link rel="icon" href="assets/img/favicon.png" type="image/x-icon">
</head>
<body>
<header>
<div class="jumbotron">
<section class="right mobile">
<img src="./assets/img/jumbotron.jpeg"
alt="seorang wanita yang duduk dan menghadap ke depan sambil membuka laptop">
</section>
<section class="left">
<h1 class="title">
My Bookshelf
</h1>
<div class="subtitle">
<p>
Managing your book properly,
</p>
<p>
Boost your productivity.
</p>
</div>
<p>
<a href="#manage" class="button-primary">Manage Now</a>
</p>
</section>
<section class="right desktop">
<img src="./assets/img/jumbotron.jpeg"
alt="seorang wanita yang duduk dan menghadap ke depan sambil membuka laptop">
</section>
</div>
</header>
<main id="manage">
<section class="search">
<form id="searchBook">
<input id="searchBookTitle" type="text" placeholder="Search book by title">
</form>
</section>
<section class="book-container">
<div class="book">
<h2 class="h2 text-center">
<span>Book List</span>
</h2>
<a class="button-add">Add New Book <i class="fas fa-plus"></i></a>
<div class="form-container">
<form id="book">
<div class="form-group">
<label for="title">Title</label>
<input class="form-control" id="title" type="text" placeholder="Book title">
</div>
<div class="form-group">
<label for="author">Author</label>
<input class="form-control" id="author" type="text" placeholder="Book author">
</div>
<div class="form-group">
<label for="year">Year</label>
<input class="form-control" id="year" type="number" placeholder="Year publish">
</div>
<div class="form-group">
<input id="isComplete" type="checkbox">
<label for="isComplete">Already read?</label>
</div>
<div class="form-group">
<button class="button-save" id="saveBook" type="button">Save</button>
<button class="button-save" id="updateBook" type="button">Update</button>
</div>
</form>
</div>
<div id="unfinished-read" class="list-group">
</div>
</div>
<div class="book">
<h2 class="h2 text-center">
<span>Finished Read</span>
</h2>
<a class="button-clear">Clear All <i class="fas fa-trash"></i></a>
<div id="finished-read" class="list-group">
</div>
</div>
</section>
</main>
<footer>
<p>© Copyright 2021 <a href="https://virgiawan.id" target="_blank">Virgiawan</a></p>
</footer>
<script src="./assets/main.js"></script>
</body>
</html>