-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (58 loc) · 1.83 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
<!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="./style.css" />
<title>Awesome Books</title>
</head>
<body>
<header class="header-container">
<nav class="navigation">
<h2>Awesome Books</h2>
<ul class="menu">
<li class="list">List</li>
<li class="gap-line add">Add New</li>
<li class="contact">Contact</li>
</ul>
</nav>
<div id="date"></div>
</header>
<main>
<section class="container">
<div class="books">
<h2>Awesome Books</h2>
<div class="books__list"></div>
</div>
<div class="add-book hide">
<div class="newbook__form">
<label for="book"></label>
<input type="text" name="book" class="data" id="book" placeholder="Title" required />
<br />
<label for="author"></label>
<input type="text" name="author" class="data" id="author" placeholder="Author" required />
<br />
<input type="submit" class="text-1 btn" id="submit" value="Add" />
</div>
</div>
<div class="contact-info hide">
<h2 class="contact-text-1">Contact Information</h2>
<p class="contact-p">Do you have any questions or you just want to say "Hello"? You can reach out to us!
</p>
<ul>
<li>Our email : [email protected]</li>
<li>Our phone number : 004-358-6534422</li>
<li>Our address : Streetname 100, 12345 City, Country</li>
</ul>
</div>
</section>
</main>
<footer>
<div class="footer__container">
<h2>Copyright © Daphine & Ali Karimi </h2>
</div>
</footer>
<script src="./style.js"></script>
</body>
</html>