-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.51 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
<!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">
<script src="index.js" type="module" defer></script>
<title>Awesome Books ES6</title>
</head>
<body>
<nav class="nav">
<h1>
Awesome Books ES6
</h1>
<div>
<a href="#list" class="list lined">List</a>
<a href="#add-new" class="add-new lined">Add new</a>
<a href="#contact" class="contact-link">Contact</a>
</div>
</nav>
<p id="date"></p>
<h1 class="books-head">
All Awesome Books
</h1>
<form action="" class="form">
<h2>Add a new book</h2>
<input type="text" placeholder="title" id="title" required><br><br>
<input type="text" placeholder="author" id="author" required><br><br>
<button id="add-book">Add</button>
</form>
<section class="contact">
<h2>
Contact Information
</h2>
<p>
Do you have any questions or you just want to say "Hello"?<br> You can reach out to me
</p>
<ul>
<li>My email: <br> [email protected]</li>
<li>My phone number: <br>+233554374251</li>
<li>My Githubs: <br>https://github.com/flemton</li>
</ul>
</section>
<footer class="footer">
<p>Newton © 2023</p>
</footer>
</body>
</html>