generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 1.82 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
<!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 ES6</title>
<link rel="stylesheet" href="/styles.css" />
<script src="/index.js" type="module"></script>
</head>
<body>
<main>
<div class="mainWrapper">
<header>
<a href="/" id="logo">Awesome Books</a>
<ul>
<li><a href="/">List</a></li>
<li><a href="/">Add new</a></li>
<li><a href="/">Contact</a></li>
</ul>
</header>
<div class="pages">
<div class="time">Date</div>
<section id="booklist">
<h1>All awesome books</h1>
<div class="container"></div>
<div class="bar"></div>
</section>
<section id="addBook" class="hidden">
<h2>Add a new book</h2>
<form action="#">
<input class="title" type="text" placeholder="Title" required />
<br />
<br />
<input class="author" type="text" placeholder="Author" required />
<br />
<br />
<button class="add" type="submit">Add</button>
</form>
</section>
<section id="contact" class="hidden">
<h2>Contact Information</h2>
<p>Do you have any question or anything you want to say</p>
<ul>
<li>Our enmail is: [email protected]</li>
<li>Our phone number: 000555636600</li>
<li>Our address Loudokume 159 city</li>
</ul>
</section>
</div>
<footer>
<h4>copyright</h4>
</footer>
</div>
</main>
</body>
</html>