-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (54 loc) · 2.27 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
69
70
71
<!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="styles/style.css">
<title>AwesomeBooks</title>
</head>
<body>
<div class="navbar-container">
<nav class="navbar">
<a class="logo" href="#">Awesome Books</a>
<ul class="row-list">
<li><a class="active" href="#" data-section = "book-section">List</a></li>
<li><a href="#" data-section = "add-book-section">Add new</a></li>
<li><a href="#" data-section = "contact-section">Contact</a></li>
</ul>
</nav>
<div class="date-time">
<p id="datetime"></p>
</div>
</div>
<main>
<!-- global book container -->
<section class="section-container active " id="book-section">
<h1>All awesome books</h1>
<div class="books-container" id="books-container"></div>
</section>
<section class="section-container " id="add-book-section">
<form>
<h2>Add a new book</h2>
<input id="title" type="text" placeholder="Title" class="input-field" required /> <br> <br>
<input id="author" type="text" placeholder="Author" class="input-field" required /> <br> <br>
<button type="submit" id="submit-btn" class="btn submit">Add</button>
</form>
</section>
<section class="section-container" id="contact-section">
<h2>Contact information</h2>
<p>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: 0043586534422</li>
<li>Our address: Streetname 22, 84503, City, Country</li>
</ul>
</section>
</main>
<footer>
<p>© 2023 -   Riley Manda and Nelly Telli  - All Rights Reserved</p>
</footer>
<script type="module" src="./scripts/storage.js"></script>
<script type="module" src="./scripts/app.js"></script>
</body>
</html>