generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (59 loc) · 1.84 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
66
67
<!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">
</head>
<body>
<header class="header">
<nav class="topnav">
<h1><a href="#" class="logo">Awesome Books</a></h1>
<ul class="menu">
<li class="list">List</li>
<li>
<hr>
</li>
<li class="addNew">Add new</li>
<li>
<hr>
</li>
<li class="contact">Contact</li>
</ul>
</nav>
<div id="date">placeholder</div>
</header>
<main class="main">
<section class="listSection" id="listSection">
<h2>All awesome books</h2>
<div class="all-books">
</div>
</section>
<form class="form hidden" id="form">
<h2 class="form-title">Add a new book
</h2>
<input type="text" name="title" placeholder="Title" required />
<input type="text" name="author" placeholder="Author" required />
<button type="submit">Add</button>
</form>
<section class="contactSection hidden" id="contactSection">
<h2 class="contact-title">Contact Information</h2>
<p class="contact-text">
Do you have any questions or comments? Maybe you want to say hello? <br> Send us a message!
</p>
<ul class="contactInfo">
<li class="contactItem">Our Email: [email protected]</li>
<li class="contactItem">Our Phone Number: +15555222999</li>
<li class="contactItem">Our address: StreetName 1234, 90210 City, State, Country</li>
</ul>
</section>
</main>
<footer class="footer">
<p class="CopyRight"> Awesome Books © 2022</p>
</footer>
<script src='logic.js'></script>
<script src='spa.js'></script>
</body>
</html>