generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 2.28 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
<!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="icon" href="images/profile.png">
<link rel="stylesheet" href="index.css">
<title>Awesomne book ES6</title>
</head>
<body>
<!-- ==================================================================================================================================== -->
<!-- the header here -->
<header>
<nav>
<div class="navigation">
<span class="main-title">AWESOME BOOK</span>
<ul>
<li><a href="#">List</a></li>
<span class="h-line"></span>
<li><a href="#">Add New</a></li>
<span class="h-line"></span>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div id="times-zone"><span id="date&time">date here</span></div>
</nav>
</header>
<!-- end of header here -->
<!-- ==================================================================================================================================== -->
<!-- the awesome books list section here -->
<section id="list-items">
<h2 id="main-heading">All AWESOME BOOKS</h2>
<!-- main section all Awesome books -->
<main id="main-content">
<!-- The list of books -->
<div class="bookItem">
<div class="about-book"><q>Title</q> By <span>Author</span></div>
<button>Remove</button>
</div>
<!-- End of the list of books -->
</main>
<!-- End of main section for all awesome books -->
</section>
<!-- End of the awesome books list section here -->
<!-- ==================================================================================================================================== -->
<!-- ==================================================================================================================================== -->
<footer>
<div>Copyright: Fastdevz 2022</div>
</footer>
<script src="index.js"></script>
</body>
</html>