forked from Abenezer-Tilahun/Awesome-books
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (62 loc) · 2.09 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
<!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="./style.css" />
<title>Awesome Books</title>
</head>
<body>
<header>
<div class="nav-bar">
<a>
<h2>Awesome books</h2></a>
<div class="nav-item">
<ul>
<li><a class="listBtn" href="#book-list" >List</a> <hr/></li>
<li><a class="listBtn" href="#add-books" >Add New</a> <hr/></li>
<li><a class="listBtn" href="#contact" >Contact</a></li>
</ul>
</div>
</div>
<div class="date_time"></div>
</header>
<div class="container">
<section class="sec booklist active" id="book-list">
<h2 class="heading">All Awesome books</h2>
<ul class="list-section">
</ul>
</section>
<section class="sec addbooks" id="add-books">
<form>
<span class="heading">Add a new book </span>
<label for="title">
<input type="text" id="title" placeholder="Title" required>
</label>
<label for="author">
<input type="text" id="author" placeholder="Author" required>
</label>
<button type="submit" class="btn-submit"> Add</button>
</form>
</section>
<section class="sec contact" id="contact">
<h1 class="contact_header">Contact information</h1>
<p>Do you have any question or you just want to say "hello" ? You can reach out to us! </p>
<ul class="contact_info">
<li><p> our email : Abenezerandfaith@gmail.com</p></li>
<li><p>Our phone number : 002346788 </p></li>
<li><p>Our address : sanfrascisco,USA </p></li>
</ul>
</section>
</div>
<footer>
<div class="nav-bar">
<a>
<h2> Copyright- Abenezer & Faith, 2022</h2>
</a>
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>