-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-new.html
45 lines (45 loc) · 1.34 KB
/
add-new.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
<!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/add-new.css">
<title>Awesome books</title>
</head>
<body>
<nav>
<div class="pravougaonik">
<h1 id="header">Awesome Books</h1>
<div class="dugmici">
<a href="index.html" rel="noopener" id="books-link">List</a>
<a href="add-new.html" rel="noopener" id="add-book-link">Add new</a>
<a href="contact.html" rel="noopener" id="contact-info-link">Contact</a></div></div>
<div id="DateTime"></div>
</nav>
<section class="book-list">
<div id="book-collection">
<h1>All awesome books</h1>
<div id="book-list"></div>
</div>
</section>
<section class="add-book">
<h4>Add a new book</h4>
<form id="add-book-form">
<label>
<input type="text" id="book-title" name="book-title" placeholder="Title">
</label>
<label>
<input type="text" id="author-name" name="author-name" placeholder="Name">
</label>
<button type="submit" id="add-button">Add</button>
</form>
</section>
<footer id="footer">
<div class="kockodugic">
<h5>Copyright ...</h5>
</div>
</footer>
<script type="module" src="./index.js"></script>
</body>
</html>