-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 1.76 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
<!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 book with ES6</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header id="header">
<h1>Awesome Books</h1>
<ul>
<ul><a href="#Books" id="books__link">My books</a></ul>
<ul><a href="#bookInputs" id="bookInputs__link">Add books</a></ul>
<ul><a href="#contact" id="contact__link">Contact</a></ul>
</ul>
</header>
<div class="timer">
<p id="date"></p>
</div>
<div id="books">
<h1>All Awesome books</h1>
<article id="booklist"> </article>
</div>
<div id="bookInputs">
<h3>Add a new book</h3>
<label for="title" hidden>Title</label>
<input type="text" id="title" placeholder="Title"/>
<label for="author" hidden>Author</label>
<input type="text" id="author" placeholder="Author"/>
<button type="button" id="add">Add Book</button>
</div>
<section id="contact">
<h1 class="h1-contact">Contact information</h1>
<div >
<p>
Do you have any questions or you just want to say "Hello" <br />
you can reach out to us!
</p>
<div class="ul-div">
<ul>
<li>Email: example@mail.com</li>
<li>Phone number: +123456789</li>
<li>Address: District, city ,country</li>
</ul>
</div>
</div>
</section>
<footer>
<div class="copyright">Copyright .....</div>
</footer>
<script src="index.js" type="module"></script>
</body>
</html>