-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Awesome Books</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<a>Awesome Books</a>
<ul class="nav-ul">
<li onclick="makeActive('list-books')">List</li>
<li onclick="makeActive('add-new')">Add new</li>
<li onclick="makeActive('contact-section')">Contact</li>
</ul>
</nav>
</header>
<span>Date here</span>
<div class="list-books section">
<h1>Awesome Books</h1>
<div class="display-books"></div>
</div>
<div class="container section add-new">
<h3>Add a new Book</h3>
<form>
<div class="input-fields">
<input type="text" id="title" name="title" placeholder="Title" required/>
</div>
<div class="input-fields">
<input type="text" id="author" name="author" placeholder="Author" required/>
</div>
<button type="submit" class="add-book">Add Book</button>
</form>
</div>
<section class="contact-section section">
<h2>Contact Information</h2>
<p>Do have any questions or you just want to say 'hello'? <br> You can reach out to us!</p>
<ul>
<li>Our email: [email protected]</li>
<li>Our phone number: 07220000000</li>
<li>Our address: Streetname 22, 84503 City, Country</li>
</ul>
</section>
<footer>
<p>© Copyright</p>
</footer>
<script src="app.js"></script>
</body>
</html>