generated from GeekyHacks/Microverse_HTML_CSS_JS-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (51 loc) · 1.83 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="stylesheet" href="css/styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,400;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Gothic+A1:wght@100;200;300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<title>Awesome Books</title>
</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 id="container"></div>
<!-- <div id="addBooks"></div>
<div id="contactUs"></div> -->
</main>
<footer>
<h3 class="copyRights">
Copy rights reserved to <a href="https://github.com/GeekyHacks">geekyhacks</a> &<a
href="https://github.com/Bhekisile"
>Jozi</a
>
</h3>
</footer>
<script src="./JS/script.js"></script>
</body>
</html>