-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (53 loc) · 1.78 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
<!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="./index.css" />
<title>Awesome books-ES6</title>
</head>
<body>
<div class="main-container">
<header>
<nav>
<p class="logo">AwesomeBook</p>
<ul>
<li class="listBtn">List</li>
<li class="add-new-btn">Add new</li>
<li class="contact">Contact</li>
</ul>
</nav>
</header>
<div id="current-date"></div>
<div class="book-list-container">
<h1>All Awesome books</h1>
<div id="book-list"></div>
</div>
<div class="form-container">
<h1 class="add-text">Add a new book</h1>
<hr class="hr" />
<br />
<form id="book-form">
<input type="text" required placeholder="Title" id="title" /><br />
<input type="text" required placeholder="author" id="author" /><br />
<button id="add-button" type="submit">Add</button>
</form>
</div>
<section class="contact-info">
<h1>Contact Information</h1>
<p>Do you have any questions or just you want to say "Hello"?</p>
<p>You can reach out to us!</p>
<ul>
<li>Our Email: [email protected]</li>
<li>Our Phone Number: +99 0123456789</li>
<li>Our Adress: Mountain View, California, United States</li>
</ul>
</section>
<footer>
<p>Copyright @2022 developed by <b>Happen</b> and <b>Achraf</b>.</p>
</footer>
</div>
<script src="./index.js" type="module"></script>
</body>
</html>