-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (48 loc) · 1.82 KB
/
Copy pathindex.html
File metadata and controls
50 lines (48 loc) · 1.82 KB
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
<!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">
<script src="https://cdn.jsdelivr.net/npm/luxon@2.0.2/build/global/luxon.min.js"></script>
<link rel="stylesheet" href="style.css">
<title>Awesome Books</title>
</head>
<body>
<nav class="nav-bar d-flex">
<h2 class="heading-nav"><img class="logo" src="./awesomebooks.png" alt="awesomebooks"></h2>
<ul class="nav-list d-flex">
<li><a class="current" id="list" href="#">List</a> </li>
<li class="mid"><a id="add-new-book" href="#">Add new</a> </li>
<li><a href="#" id="contact">Contact</a> </li>
</ul>
</nav>
<span class="now"></span>
<div class="container">
<h1 class="heading">All Awesome Books</h1>
<div class="contact d-none">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa, expedita aperiam. Eligendi quas sequi quod officia quia numquam dignissimos, sit, maxime hic, ut at cupiditate totam minus ab id mollitia!</p>
<ul class="contact-list">
<li>Our e-mail mail@mail.com</li>
<li>Our phone number:004358653442</li>
<li>Our adress Streetname 22, 84503 city, country</li>
</ul>
</div>
<div class="book-list">
<div class="added2">
<ul class="list"></ul>
</div>
</div>
<div class="book-inputs d-none">
<hr class="line">
<form action="#" id="formm" name="form" onsubmit="return formValidate()">
<input type="text" class="title box" name="title" placeholder="Title" required>
<input type="text" class="author box" name="author" placeholder="Author" required>
<div><input type="button" class="sub box" value="Add"></div>
</form>
</div>
</div>
<script src="main.js"></script>
<footer>Copyright</footer>
</body>
</html>