-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (50 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Booksky</title>
<link rel="stylesheet" href="style.css">
<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=Tiro+Tamil&family=Unna:ital@1&display=swap" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<span>📘</span>
<span>📗</span>
<span>📔</span>
<span>📖</span>
<span>📙</span>
<span>🖋</span>
<span>🖉</span>
<span>📔</span>
<span>📗</span>
<span>📘</span>
</div>
<div class="navbar">
<h1>Booksky</h1>
</div>
<div class="container">
<div class="book-container">
<h2>HARRY POTTER</h2>
<h4>J.K.Rowling</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Amet deserunt vitae voluptatum. Animi, fugit esse eos voluptates quaerat maiores consequuntur rerum amet sequi molestias perspiciatis asperiores distinctio placeat, facilis porro!</p>
<button onclick="deletebook(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-button" id="add-popup-button">+</button>
<script src="script.js"></script>
</body>
</html>