-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (58 loc) · 2.34 KB
/
Copy pathindex.html
File metadata and controls
71 lines (58 loc) · 2.34 KB
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
71
<!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/styles.css">
<title>Awesome Books</title>
</head>
<body>
<header>
<nav class="nav-bar">
<section class="logo"><a>Awesome Books</a></section>
<ul class="list-Container">
<li><a href="#book-list" id="list" class="nav-link">List</a></li>
<li><a href="#book-add" id="new-add" class="nav-link">add new</a></li>
<li><a href="#contact-info" id="contact" class="nav-link">contact</a></li>
</ul>
</nav>
<span id="datetime">Testing</span>
</header>
<main class="content">
<section id="book-list">
<h1>All awesome books</h1>
<table class="table" id="books-table">
</table>
</section>
<section id="book-add">
<h2>Add a new book</h2>
<form>
<div class="field hidden">
<input type="text" class="form-control" name="bookID" id="bookID">
</div>
<div class="field">
<input type="text" class="form-control" name="booktitle" id="booktitle" aria-describedby="Title"
placeholder="Title" required>
</div>
<div class="field">
<input type="text" class="form-control" name="bookauthor" id="bookauthor" aria-describedby="Author"
placeholder="Author" required>
</div>
<input type="submit" class="form-control button" name="addbutton" id="addbutton" aria-describedby="Add"
value="Add">
</form>
</section>
<section id="contact-info">
<h1>Contact Information</h1>
<p>onsectetur adipisicing elit. Sit, dignissimos! Deleniti iste quas error numquam eaque illum illo officiis cumque et impedit saepe, cupiditate est incidunt similique consequuntur velit quae
</p>
<div class="contact-list"></div>
</section>
</main>
<footer>
<h2>Copyright</h2>
</footer>
<script src="js/index.js" type="module"></script>
</body>
</html>