-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (77 loc) · 2.5 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
71
72
73
74
75
76
77
78
79
80
81
<!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" />
<title>Awesome Books by RideOnOne</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<header>
<nav class="nav-container">
<div class="logo">
<img src="./assets/abook.png" alt="logo">
<a href="#">Awesome Books</a>
</div>
<ul class="nav-links">
<li><a href="#" class="nav-link list active">List</a></li>
<li><a href="#" class="nav-link addBook">Add New</a></li>
<li><a href="#" class="nav-link contactInfo">Contact</a></li>
</ul>
</nav>
<div class="timeDisplay">
<div class="date"></div>
<div class="time"></div>
</div>
</header>
<section class="book-display" id="book-display">
<div class="app-title">
<h1 class="heading">All Awesome Books</h1>
</div>
<div class="book-list"></div>
</section>
<section class="add-book" id="add-book">
<div class="add-book">
<h2>Add New Book</h2>
<span></span>
<form id="form" class="form-div">
<p class="warning"></p>
<input
class="inputField title"
type="text"
name="title"
id="title"
placeholder="Title"
/>
<input
class="inputField author"
type="text"
name="author"
id="author"
placeholder="Author"
/>
<button id="submit" class="btn submit-btn" type="submit">Add Book</button>
</form>
</div>
</section>
<section class="contact" id="contact">
<h2>Contact Information</h2>
<p>
Do you have any questions to ask or you just want to say "Hello"? <br />
You can reach out to us!
</p>
<ul class="contact-info">
<li>🤚 <span>Our email :</span> onifkay@gmail.com</li>
<li>🤚 <span>Our phone Number :</span> +2348060119837</li>
<li>🤚 <span> Our Address:</span> 13, Olaiya Street, Dada Estate Oshogbo</li>
</ul>
</section>
<footer>
<p>© 2022. All Right Reserved</p>
</footer>
</div>
<script src="./js/index.js"></script>
</body>
</html>