-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (65 loc) · 2.79 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
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Asap:wght@600&display=swap" rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav class="d-flex justify-content-between align-items-center px-2 py-2 border border-3 border-dark">
<h1 class="m-0">Awesome Books</h1>
<div>
<a id="list-link" class="nav-links active" href="#">List</a>
<a id="new-link" class="nav-links" href="#">Add new</a>
<a id="contact-link" class="nav-links" href="#">Contact</a>
</div>
</nav>
</header>
<div class="time"></div>
<section class="books-list show">
<h2 class="text-center">All Awesome Books</h2>
<div id="books" class="border border-3 border-dark text-center">
</div>
</section>
<section class="add-books">
<h2 class="text-center">Add a new book</h2>
<div class="d-flex justify-content-center">
<form class="text-center w-50">
<input class="my-2 form-control" type="text" name="title" id="title" placeholder="Title"><br>
<input class="my-2 form-control" type="text" name="author" id="author" placeholder="author"><br>
<button class="float-end btn btn-primary" type="submit" id="add">Add</button>
</form>
</div>
<p id="add-book-success" class="text-center d-none">Book Added Successfully</p>
</section>
<section class="contact">
<h2 class="text-center">Contact Information</h2>
<div class="d-flex flex-column align-items-center mt-5">
<p>
Do have any questions or you just want to soy "Hello"?<br> You can reach out to us!
</p>
<ul>
<li>Our e-mail: [email protected]</li>
<li>Our phone number 0043586534422</li>
<li>Our address: Streetname 22, 84503 City Country </li>
</ul>
</div>
</section>
<footer class="border border-3 border-dark p-2">
<p class="m-0">Copyright © all rights reserved 2021.</p>
</footer>
<script src="https://moment.github.io/luxon/global/luxon.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="js/main.js"></script>
</body>
</html>