-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (61 loc) · 2.29 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
<!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="index.css">
<script src="https://kit.fontawesome.com/82d81c0b26.js" crossorigin="anonymous"></script>
<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=Nunito:wght@600&family=Quattrocento+Sans:wght@400;700&family=Quattrocento:wght@700&family=Quicksand:wght@600&display=swap"
rel="stylesheet">
<title>ES6 Book-List</title>
</head>
<body>
<header id="header">
<h3><i class="fa-solid fa-book-open"></i> Awesome Books</h3>
<ul>
<li><a href="#" id="list">List</a></li>
<li><a href="#" id="add-new">Add new</a></li>
<li><a href="#" id="contact">Contact</a></li>
</ul>
</header>
<div id="date"></div>
<main>
<div id="heading">
<h1 id="header-name">Awesome Books</h1>
</div>
<section id="main-content">
<div id="book-list">
</div>
<div id="form-visibility" class="hidden">
<form id="book-form">
<input name="title" id="title" type="text" placeholder="Title" required>
<input name="author" id="author" type="text" placeholder="Author" required>
<button type="submit" id="add">Add</button>
</form>
</div>
<div id="contact-details" class="hidden">
<p>Do you have any questions or you just want to say "Hello"?</p>
<p>Let's connect!</p>
<div id="details">
<a href="https://www.linkedin.com/in/alfredm-7b41a0270" class="social-links" target="_blank">
<i class="fa-brands fa-linkedin-in fa-5x"></i>
</a>
<a href="https://twitter.com/AlfredMkg" class="social-links" target="_blank">
<i class="fa-brands fa-twitter fa-5x"></i>
</a>
<a href="https://github.com/badger-99" class="social-links" target="_blank">
<i class="fa-brands fa-github fa-5x"></i>
</a>
</div>
</div>
</section>
</main>
<footer id="footer">
<p>Copyright <i class="fa-regular fa-copyright"></i>2023</p>
</footer>
<script src="./index.js" type="module"></script>
</body>
</html>