-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (47 loc) · 1.89 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
<!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 BOOK WEB-APP</title>
</head>
<body>
<nav class="nav">
<span><a class="logo" href="./index.html">Awesome Books</a></span>
<ul>
<li><a href="#" class="list" id="list-section">List</a></li>
<li><a href="#" class="list" id="add-book-section">Add new</a></li>
<li><a href="#" class="list" id="contact-section">Contact</a></li>
</ul>
</nav>
<div class="time-box"><span class="current-time">Current Time</span></div>
<main class="main">
<h1 class="main-title">All Awesome Books</h1>
<div class="books"></div>
</main>
<section class="formSection">
<form id="addBook" method="post">
<h3 class="form-title">Add a New Book</h3>
<input id="addTitle" type="text" placeholder="Title" required>
<input id="addAuthor" type="text" placeholder="Author" required>
<button type="submit">Add</button>
</form>
</section>
<section class="contact">
<h3 class="contact-title">Contact information</h3>
<p class="contact-content">
Do you have any questions or you just want to say "Hello"? <br>
You can reach out to us!
</p>
<ul class="contact-list">
<li class="list-element">Our email: mail@mail.com</li>
<li class="list-element">Our phone number: 0043586534422</li>
<li class="list-element">Our address: Streetname 22, 84503 San Francisco, California - Microverse</li>
</ul>
</section>
<footer>Copyright by Microverse 2022. All rights reserved</footer>
<script type="module" src="./index.js"></script>
</body>
</html>