generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (50 loc) · 1.8 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 Books</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
<script defer src="pageDisplay.js"></script>
</head>
<body>
<header>
<nav class="nav-bar">
<div>Awesome Books</div>
<ul class="links-list">
<li><a id="list" class="nav list" href="#book-section">List</a></li>
<li id="navAdd"><a class="nav add" href="#add-book">Add new</a></li>
<li id="navContact"><a class="nav contact" href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="book-section">
<h1 class="mainTitle">Awesome books</h1>
<ul id="book-list"></ul>
</section>
<section id="add-book">
<h2 class="awesome-title mainTitle">Add a new book</h2>
<form>
<input id="title" type="text" name="Title" placeholder="Book Title:" required>
<input id="author" type="text" name="Author" placeholder="Author:" required>
<button id="add">Add</button>
</form>
</section>
<section id="contact">
<h2 class="mainTitle">Contact information</h2>
<p>Do you have any questions or you just want to say hello?</p>
<ul>
<li>Our email: mail@mail.com </li>
<li>Our phone number</li>
<li>Our address Streethome 22, 82433 City, Country</li>
</ul>
</section>
</main>
<footer>
<p class="footer">Copywrite</p>
</footer>
</body>
</html>