-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 2.72 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!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">
<link rel="stylesheet" href="css/style.css">
<script src="js/library.js" defer></script>
<title>Library</title>
</head>
<body>
<div id="main">
<div id="sidebar">
<div>
<h1>Library</h1>
<form novalidate>
<ul>
<li>
<label for="title">Title:</label>
<input type="text"
id="title"
autocomplete="off"
placeholder="Title"
required>
</li>
<li>
<label for="author">Author: </label>
<input type="text"
id="author"
autocomplete="off"
placeholder="Author"
required>
</li>
<li>
<label for="pages">Number of pages: </label>
<input type="number"
id="pages"
autocomplete="off"
placeholder="Pages"
required>
</li>
<li>
<input type="checkbox"
id="read">
<span>I have already read the book.</span>
<label for="read">I have already read the book.</label>
</li>
<li>
<button type="submit">Add</button>
</li>
</ul>
</form>
</div>
<div class="copyright">© Thinh Phan,
<script>
document.write(new Date().getFullYear())
</script>
<a href="https://github.com/teephan91" target="_blank"><img class="github" src="img/github_logo.png" alt="Github logo"></a>
</div>
</div>
<div id="display"></div>
</div>
<footer>© Thinh Phan,
<script>
document.write(new Date().getFullYear())
</script>
<a href="https://github.com/teephan91" target="_blank"><img class="github" src="img/github_logo.png" alt="Github logo"></a>
</footer>
</body>
</html>