-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (40 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Book App | Created By:Pramesh Karki</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
</head>
<body>
<main>
<div class="container">
<h2><i class="fas fa-book-open"></i>My<span>Book</span>App</h2>
<form class="user-input">
<label for="book-name">Book Name :</label>
<input type="text" name="book-name" id="book-name">
<label for="authors-name">Author's Name :</label>
<input type="text" name="authors-name" id="authors-name">
<label for="isbn-number">ISBN# :</label>
<input type="text" name="isbn-number" id="isbn-number">
<input type="submit" value="Add a Book" id="add-book-btn">
</form>
</div>
<div class="table-container">
<table class="book-container">
<thead>
<tr>
<th>Book Name</th>
<th>Author's Name</th>
<th>ISBN</th>
<th></th>
</thead>
<tbody id="book-list"></tbody>
</table>
</div>
</main>
<script src="./script.js"></script>
</body>
</html>
<!-- Pramesh Karki -->