-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (62 loc) · 2.01 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
<!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="./index.css" />
<title>Awesome Books</title>
</head>
<body>
<header id="header">
<nav class="navbar">
<a href="#" id="nav-header">Awesome Books</a>
<ul class="navbar-list">
<li class="test"><a class="listBtn active" href="#book-list-section">List </a></li>
<li id="new"><a class="listBtn" href="#book-add-section">Add New</a></li>
<li id="contact"><a class="listBtn" href="#book-contact-section">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div id="dateWrapper">
<p id="date"></p>
</div>
<div class="flex-container">
<section class="section active" id="book-list-section">
<h1 class="pageTitle">All awesome books</h1>
<div id="book-list-container">
<section class="book-list"></section>
</div>
</section>
<section class="section" id="book-add-section">
<h1 class="h-add">Add a new book</h1>
<form id="formSection">
<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 class="btn-submit" type="submit" value="Add"> Add</button>
</form>
</section>
<section class="section" id="book-contact-section">
<h1>Contact Information</h1>
<div>
<p>Do you have any questions or you just want to say "Hello"?<br>You can reach out to us!</p>
</div>
<ul id="contact-list">
<li>Our email: [email protected]</li>
<li>Our phone number : 11117770999</li>
<li>Our address : Microverse 23, 53215 Microcity, Microland.</li>
</ul>
</section>
</div>
</main>
<footer id="footer">
<p>Copyright © <span>Said Rašinlić, Mehdi Rahal & Nicholas Mutale</span></p>
</footer>
<script type="module" src="./index.js"></script>
</body>
</html>