-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (59 loc) · 1.87 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
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Awesome Books</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--header start-->
<header class="container header">
<nav>
<ul class="header-menu">
<li class="header-menu-first">Awesome Books</li>
<li><a href="#list">List</a></li>
<li><a href="#add">Add new</a></li>
<li class="header-menu-last"><a href="#contact">Contact</a></li>
</ul>
</nav>
<time> 12th Feb 1992</time>
</header>
<!--header end-->
<main>
<!--list start-->
<section class="container content">
<h1>Awesome Books</h1>
<ul class="content-list"></ul>
</section>
<!--list end-->
<!--add start-->
<section class="container content">
<form class="content-form">
<h1>Add a new book</h1>
<input type="text" name="title" placeholder="Title" required>
<input type="text" name="author" placeholder="Author" required>
<button type="submit">Add</button>
</form>
</section>
<!--add end-->
<!--contact start-->
<section class="container content">
<h1>Contact Information</h1>
<p>Do you have any questions or you just want to say "Hello"? You can reach out to us!</p>
<ul class="content-contact">
<li>Our e-mail: mail@mail.com</li>
<li>Our phone number: 0043586534422</li>
<li>Our addres: Streetname 22, 84503 City, Country</li>
</ul>
</section>
<!--contact end-->
</main>
<!--footer start-->
<footer class="container">
<p class="footer">Copyright …</p>
</footer>
<!--footer end-->
<script src="script.js"></script>
</body>
</html>