-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (42 loc) · 1.09 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
<!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="style.css">
<title>Awesome Books</title>
</head>
<body>
<nav class="navbar">
<a href="#" class="logo">Awesome Books</a>
<ul class="navbarItemContainer">
<li class="navItem">
<a id="listMenu" href="#">List</a>
</li>
<li class="navItem">
<a id="addNewMenu" href="#">Add New</a>
</li>
<li class="navItem">
<a id="contactMenu" href="#">Contact</a>
</li>
</ul>
</nav>
<header class="header">
<div class="timeDate">
<p id="time" class="timeDateText"></p>
</div>
</header>
<main id="main" class="main">
<section id="list" class="list">
<h2 class="h2"> linters fixing</h2>
</section>
</main>
<footer class="footer">
<p class="footerText">
Copyright: 2022 Serkai all rights reserved.
</p>
</footer>
<script type="module" src="./src/index.js"></script>
</body>
</html>