-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Awesome Books ES6</title>
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<header>
<nav>
<div class="navBar">
<h2>Awesome Books</h2>
<div>
<a href="#" class="link" id="listBtn">List</a>
<span>|</span>
<a class="link" id="addNewBook" href="#">Add New</a>
<span>|</span>
<a class="link" id="contactBtn" href="#">Contact</a>
</div>
</div>
<p class="dayDate"></p>
</nav>
</header>
<main>
<h1>Welcome to Awesome Books</h1>
<div class="container" id="container"></div>
</main>
<footer>
<h3 class="copyRights">Copyrights reserved to <a href="https://github.com/sharminkhan0">@sharminkhan0</a></h3>
</footer>
<script src="./js/index.js" type="module"></script>
</body>
</html>