-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (65 loc) · 2.71 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
<!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>JS Book List App</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<main class="container">
<header class="book-list_title mt-3">
<h1>
<a href="./" class="text-dark">
<i class="fa-solid fa-book-open"></i>My<span>Book</span>List
</a>
</h1>
</header>
<section class="book-lists_form">
<form id="books-form" class="form-control w-75 mx-auto">
<div class="mb-3">
<label for="title">Title</label>
<input type="text" id="title" class="form-control">
</div>
<div class="mb-3">
<label for="author">Author</label>
<input type="text" id="author" class="form-control">
</div>
<div class="mb-3">
<label for="isbn">ISBN</label>
<input type="text" id="isbn" class="form-control">
</div>
<div class="d-grid submit">
<input type="submit" id="submit" class="btn btn-lg text-light">
<button class="btn btn-lg text-light cancel mt-3 d-none">Cancel</button>
</div>
</form>
</section>
<section id="books" class="mt-4">
<table class="table-books">
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>ISBN</th>
<th></th>
</tr>
</thead>
<tbody id="book-list"></tbody>
</table>
</section>
</main>
<footer class="footer mt-auto py-3 bg-light">
<div class="container text-center">
<span class="text-muted">©Booklist 2022.</span>
</div>
</footer>
<script src="./main.js"></script>
</body>
</html>