-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (57 loc) · 2.3 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" type="favicon" href="books.png" />
<title> Library </title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Mochiy+Pop+P+One&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>My collection of Books</h1>
<form id="pop">
<div class="container">
<div class="form-content">
<button type="button" class="close"><span class="close-btn">×</span></button>
<label><b>Title</b></label>
<input type="text" id= "title" placeholder="Enter Book name" required>
<label><b>Author</b></label>
<input type="text" id = "author" placeholder="Enter Author name" required>
<label><b>Number of Pages</b></label>
<input type="number" id = "pages" placeholder="pages" name="pages-count" required>
<input type="checkbox" id="status" checked="checked"> Read status
<button type="submit" class="submit">Submit</button>
</div>
</div>
</form>
<table class="tbl">
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>Pages</th>
<th>IsRead</th>
<th>Remove</th>
</tr>
</thead>
<tbody id="book-list"></tbody>
</table>
<footer>
<button class="newbook" id="modal-btn"><span class="material-icons"> add </span></button>
</footer>
<script src="app.js" async defer></script>
</body>
</html>