-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (57 loc) · 1.67 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
<!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>Sandbox-AWB-IM</title>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<section id="header-sec">
<h1>Awesome Books</h1>
<nav id="nav-sec">
<ul class="navigation-options">
<li><a id="listshow" href="#">List</a></li>
<li><a id="addshow" href="#" >Add New</a></li>
<li><a id="contactshow" href="#" >Contact</a> </li>
</ul>
</nav>
</section>
<div id="date-time"></div>
<main>
<section id="list-books">
<h2> All awesome books</h2>
<section id="list-sec"></section>
</section>
<section id="add-sec">
<h2>Add a new book</h2>
<div class="new-book">
<input id="title" name="title" placeholder="title" required>
<input id="author" name="author" placeholder="author" required>
<button id="btn-add">Add</button>
</div>
</section>
<section id="contact-sec">
</section>
<!-- Contact section -->
<section class="contact-section" id="contact1">
<section id="contact">
<h2>Contact Information</h2>
<p>Do you 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: +57-319-453-7580</li>
<li>Our address: Cali, Colombia </li>
</ul>
</section>
</section>
</main>
<footer class="footer-container">
<div>
<p>Copyright @ 2022 Creative Commons. Some Rights Reserved.</p>
</div>
</footer>
</body>
<script src="modules/index.js" type="module"></script>
</html>