-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (26 loc) · 814 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JavaScript Library</title>
</head>
<body>
<div id="newBookButtonArea">
<h1>Books Library</h1>
<button id="newBookButton" >+ New Book</button>
</div>
<form id="form">
<label>Title: </label>
<input type="text" id="tittleInput" />
<label>Author: </label>
<input type="text" id="authorInput" />
<label>Image Book: </label>
<input type="text" id="imgsInput" />
<button type="button" id="addBtn">Add Book</button>
</form>
<div id="container"></div>
</body>
<script src="main.js"></script>
</html>