-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (59 loc) · 2.59 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
<!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>Libra</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="app">
<div class="segment-one">
<div class="overlay"></div>
<h1>Libra</h1>
<h2>Your personal reading assistant</h2>
<form action="" class="add-form" data-addBook>
<h4>Name of the book:-</h3>
<input type="text" name="book" id="book-name" placeholder="Name of the book">
<h4>Name of the author:-</h3>
<input type="text" name="author" id="author-name" placeholder="Author of the book">
<div class="options" data-options>
<label>
<input type="radio" name="status" id="read" value="read">
<span class="bubble read"></span>
<div>read</div>
</label>
<label>
<input type="radio" name="status" id="unread" value="unread">
<span class="bubble unread"></span>
<div>unread</div>
</label>
</div>
<button type="submit">Add</button>
</form>
</div>
<div class="segment-two">
<div class="book-item" data-book>
<h3 class="book-name">Test Name</h3>
<h4 class="book-author">Test Author</h4>
<h5 class="status">Read</h5>
<div class="actions">
<button class="Read-Unread" data-edit>Read</button>
<button class="Delete" data-delete>Delete</button>
</div>
</div>
<div class="book-item" data-book>
<h3 class="book-name">Test Name2</h3>
<h4 class="book-author">Test Author2</h4>
<h5 class="status">UnRead</h5>
<div class="actions">
<button class="Read-Unread" data-edit>Read</button>
<button class="Delete" data-delete>Delete</button>
</div>
</div>
</div>
</main>
<script src="main.js"></script>
</body>
</html>