-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (45 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="height=device-height,
width=device-width, initial-scale=1.0,
minimum-scale=1.0, maximum-scale=1.0,
user-scalable=no, target-densitydpi=device-dpi">
<script src="https://kit.fontawesome.com/ba581a8a22.js" crossorigin="anonymous"></script>
<script src="script.js" defer></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="dark-style.css">
<title>Library</title>
</head>
<body>
<div class="banner">
<h1>LIBRARY</h1>
</div>
<div class="main">
<p>Wow... such empty</p>
</div>
<div class="footer">
Copyright © 2021 Daraphista
</div>
<div class="menu">
<form class="hidden">
<button class="cancel"><i class="fas fa-times"></i></button>
<h1>Add New Book</h1>
<label for="title">Title<br></label>
<input type="text" placeholder="Enter Title" id="title" required> <br>
<label for="author">Author <br></label>
<input type="text" placeholder="Enter Author" id="author"> <br>
<label for="pages">Number of Pages <br></label>
<input type="text" placeholder="Enter Number of Pages" id="pages"> <br>
<button class="confirm"><b>Confirm</b></button>
</form>
<div class="buttons">
<button class="hidden" id="theme"><i class="far fa-lightbulb" id="icon"></i></button>
<button class="hidden" id="add"><i class="fas fa-plus" id="icon"></i></button>
<button id="menu"><i class="fas fa-book" id="icon"></i></button>
</div>
</div>
</body>
</html>