generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooklist.html
More file actions
65 lines (62 loc) · 2.66 KB
/
booklist.html
File metadata and controls
65 lines (62 loc) · 2.66 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Website Title -->
<title>BookList App</title>
<!-- CSS Styling -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
type="text/css" />
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
type="text/css" />
<!-- Bootswatch -->
<!--<link rel="stylesheet" href="https://bootswatch.com/4/litera/bootstrap.min.css">-->
</head>
<body>
<section id="booklist">
<div class="container container-two">
<h2 class="the-title"><i class="fa fa-shopping-cart middle-class"></i> My<span
class="middle-class">Book</span>List</h2>
<form id="book-form">
<div class="form-group">
<label for="title"><i class="fa fa-book icon-styling"></i> Book Title</label>
<input type="text" id="title" class="form-control">
</div>
<div class="form-group">
<label for="author"><i class="fa fa-user icon-styling"></i> Book Author</label>
<input type="text" id="author" class="form-control">
</div>
<div class="form-group">
<label for="isbn"><i class="fa fa-hashtag icon-styling"></i> Book ISBN</label>
<input type="text" id="isbn" class="form-control">
</div>
<div class="form-group">
<label for="price"><i class="fa fa-eur icon-styling"></i> Book Price</label>
<input type="text" id="price" class="form-control">
</div>
<input type="submit" value="Add Book" class="btn-styling btn-block">
</form>
<table class="table table-striped mt-5">
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>ISBN</th>
<th>Price</th>
<th></th>
</tr>
</thead>
<tbody id="book-list"></tbody>
</table>
</div>
</section>
<!-- JavaScript -->
<script type="text/javascript" src="assets/js/booklist.js"></script>
</body>
</html>