-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1023 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Library App</title>
<link rel="stylesheet" href="./main.css">
</head>
<body>
<header>
<h2>Library App</h2>
</header>
<main id="input-container">
<h3>Enter book information to add to storage: </h3>
<h4>Title:</h4>
<input id="title" type="text" placeholder="Enter Title">
<h4>Author:</h4>
<input id="author" type="text" placeholder="Enter Author">
<h4>ISBN:</h4>
<input id="isbn" type="text" placeholder="Enter ISBN">
<div id="please-center">
<button id="submit-btn">Submit</button>
</div>
</main>
<section id="display-container">
</section>
<footer>
<p>© 2023 All Rights Reserved by Shawaz Imam</p>
</footer>
<script src="./src/dist/main.js"></script>
</body>
</html>