-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 1.72 KB
/
index.html
File metadata and controls
58 lines (54 loc) · 1.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap"
rel="stylesheet">
<title>Awesome books</title>
</head>
<body>
<header>
<a class="logo" href="#">Awesome books</a>
<nav>
<ul>
<li><a href="#list">List</a></li>
<li><a href="#add-new">Add new</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<div class="date">
<p>March 19th 2021, 25:32 am</p>
</div>
<section id="list" class="list-book">
<h2>All awesome books</h2>
<div class="list-book-body"></div>
</section>
<section id="add-new" class="add-book">
<h2>Add a new book</h2>
<form action="" method="">
<input name="title" value="" placeholder="Title" id="title" required>
<input name="author" value="" placeholder="Author" id="author" required>
<button type="submit">Add an item</button>
</form>
</section>
<section id="contact" class="contact-information">
<h2>Contact information</h2>
<p>Do have any question or you just want to say "Hello"?</p>
<p>You can just reach out to us!</p>
<ul>
<li>Our e-mail mail@mail.com</li>
<li>Our phone number: 0648924898</li>
<li>Our address: 123 street, City, Country</li>
</ul>
</section>
<footer>
<p>Book Awesome @Copyright 2023</p>
</footer>
<script src="./index.js"></script>
</body>
</html>