-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (44 loc) · 2.11 KB
/
index.html
File metadata and controls
51 lines (44 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description"
content="Manage and track your reading list with Bookly, a simple JavaScript app for book lovers." />
<meta name="keywords" content="book management, reading list, JavaScript app, book tracking, simple book app" />
<meta property="og:title" content="Bookly" />
<meta property="og:description"
content="Manage and track your reading list with Bookly, a simple JavaScript app for book lovers." />
<meta property="og:image" content="https://coderespite.com/image/js-projects/bookly.png" />
<meta property="og:url" content="https://coderespite.com/projects/js-projects/bookly" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Bookly" />
<meta name="twitter:description"
content="Manage and track your reading list with Bookly, a simple JavaScript app for book lovers." />
<meta name="twitter:image" content="https://coderespite.com/image/js-projects/bookly.png" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Bookly</title>
</head>
<body>
<div class="modal">
<div class="container">
<h1 class="form_title">Add new books!</h1>
<p class="form_subtitle">
You can add multiple books to your reading list, you can delete them and mark as read.
</p>
<form action="" class="form">
<div class="form_input_fullwidth_icon">
<input type="text" name="bookName" placeholder="Name of the book" required>
<input type="text" name="bookAuthor" placeholder="Author of the book!" required>
<input type="text" name="bookImage" placeholder="Book poster image url">
<button class="form_button" type="submit">Submit</button>
</div>
</form>
</div>
</div>
<div class="books">
<ul class="book_list"></ul>
</div>
<script src="index.js"></script>
</body>
</html>