-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (48 loc) · 1.71 KB
/
index.html
File metadata and controls
51 lines (48 loc) · 1.71 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 charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>books sky</title>
<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=Poppins:ital@1&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="navbar"><h1>BOOKSKY</h1></div>
<div class="container">
<div class="book-container">
<h2>Rich Dad Poor Dad</h2>
<h5>by - robert</h5>
<br />
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Laborum,
dignissimos necessitatibus iure, reiciendis, distinctio quia possimus
consequatur facere perferendis voluptate officiis praesentium error
itaque expedita adipisci. Magnam distinctio corrupti obcaecati!
</p>
<button onclick="del(event)">delete</button>
</div>
</div>
<div class="popup-overlay"></div>
<div class="popup-box">
<h2>Add Book</h2>
<form>
<input type="text" placeholder="book title" id="book-title-input" />
<input type="text" placeholder="book author" id="book-author-input" />
<textarea
placeholder="short-description"
id="book-description-input"
></textarea>
<button id="add-book">ADD</button>
<button id="cancel-popup">CANCEL</button>
</form>
</div>
<button class="add-btn" id="add-pop-button" onclick="add()">+</button>
<script src="script.js"></script>
</body>
</html>