-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (39 loc) · 1.11 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
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>repl.it</title>
<link href="./css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<img src="./icons/logo.png" alt="logo">
<button id="newBook">+</button>
</header>
<div class="library">
</div>
<form action="" id="form" class="closed">
<h2>Add a new book:</h2>
<label for="author">
<input placeholder="Author" id="author" type="text">
</label>
<label for="title">
<input placeholder="Title" id="title" type="text">
</label>
<label for="number">
<input placeholder="Number of pages" id="number" type="number" >
</label>
<label for="read"> Read
<input id="read" type="checkbox">
</label>
<br>
<input id="btn" value="ADD BOOK" type="button">
<input type="button" value="CLOSE" id="close">
<p id="warning">
</p>
</form>
<script src="./js/script.js">
</script>
</body>
</html>