-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (60 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
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>Awesome Books</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter&family=Poppins:wght@100&display=swap');
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
</style>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<a href="#">Awesome Books</a>
<ul class="navLinkCont">
<li><button type="button" class="navLink" id="list">List</button></li>
<li><button type="button" class="navLink" id="addNew">Add new</button></li>
<li><button type="button" class="navLink" id="contact">Contact</button></li>
</ul>
</nav>
<span class="date">Hello</span>
</header>
<main>
<section id="bookList" class="hidden">
<h1 class="bookHeader">All awesome Books</h1>
<table id="bookContainer">
</table>
</section>
<form>
<div class="formCont hidden">
<h2 class="subheading">Add a new book</h2>
<input class="inputField inputTitle" id="titleInput" type="text" placeholder="Title"><br>
<input class="inputField inputAuthor" id="authorInput" type="text" placeholder="Author"><br>
<input id="add" class="btnShadow btnHover" type="button" value="Add">
</div>
</form>
<section class="contact hidden">
<h2 class="subheading">Contact Information</h2>
<div class="alignLeft">
<p class="addMargin">Do you have any questions or you just want to say Hello?<br>You can reach out to us!</p>
<ul>
<li>Our e-mail: [email protected]</li>
<li>Our phone number: 0012312148 </li>
<li>Our address: streetname 112f, 50560 newyork, USA</li>
</ul>
</div>
</section>
</main>
<footer>
<span>Copyright ....</span>
</footer>
<script src="luxon.js"></script>
<script src="myscripts.js"></script>
</body>
</html>