-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (81 loc) · 2.88 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!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>
<link href="index.css" rel="stylesheet" >
<link href="img/favicon.png" rel="shortcut icon" type="image/x-icon">
</head>
<body>
<!-- Header -->
<header class="header">
<div class="sub-header">
<div class="logo">
<a href="index.html" class="logos">
<img class="logo-img" src="img/awesome-books.png" alt="Awesome Books">
</a>
</div>
<div class="mobile-button"></div>
<nav class="menu">
<ul class="menu-list">
<li class="menu-items border-item">
<a href="#home" id="lists" class="nav-items">List</a>
</li>
<li class="menu-items border-item">
<a href="#addBook" id="adds" class="nav-items">Add New</a>
</li>
<li class="menu-items">
<a href="#contact" id="contacts" class="nav-items">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<!-- Main -->
<main class="main-section">
<div class="date-time">
<p class="real-date-time"></p>
</div>
<section class="page" id="home">
<h2>All Awesome Books</h2>
<div class="books-container"></div>
</section>
<section class="page" id="addBook">
<h2 class="add-book">Add a new book</h2>
<div class="form-container">
<form class="book-form">
<input type="text" name="title" id="title" placeholder="Title" />
<input type="text" name="author" id="author" placeholder="Author" />
<button type="submit">Add</button>
</form>
<p class="message-notification"></p>
</div>
</section>
<section class="page" id="contact">
<h2>Contact information</h2>
<div class="contact-container">
<p class="text">
Do have any question or you just want to say "Hello"? <br />
You can reach us through:
</p>
<div class="contact-details">
<ul>
<li class="text">Our e-mail: mail@mail.com</li>
<li class="text">Our phone number: 0044586534422</li>
<li class="text">Our address: Streetname 22, 84503 city, country</li>
</ul>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="sub-footer">
<p class="footer-text">Copyright © <span class="footer-year"><script>new Date().getFullYear()</script></span> - All Rights Reserved - <span class="footer-site"><a href="https://nwachan-theophile.netlify.app">NT</span></p>
</div>
</footer>
<script type="module" src="index.js"></script>
</body>
</html>