-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
124 lines (113 loc) · 4.04 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!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" />
<script
src="https://kit.fontawesome.com/a1e854484d.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=Ubuntu:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="index.css" />
<title>Awesome Books</title>
<script defer src="./modules/index.js" type="module"></script>
</head>
<body>
<header class="header">
<div class="container container-px">
<nav class="nav">
<a href="#hero" class="logo">Awesome Books</a>
<ul class="nav__links">
<li><a href="#" class="nav__link" id="book-list-link">List</a></li>
<li><a href="#" class="nav__link" id="add-book-link">Add</a></li>
<li><a href="#" class="nav__link" id="contact-link">Contact</a></li>
</ul>
</nav>
</div>
<div class="date-time"></div>
</header>
<main class="main">
<section id="books-list" class="books-container hero section">
<div class="container container-pall">
<h1 class="hero__title">All Awesome Books</h1>
<ul class="hero__collection"></ul>
</div>
</section>
<section id="add-book" class="Form section close">
<div class="container container-pall">
<form action="" class="form__content">
<h2 class="section__title">Add a new book</h2>
<div class="form-input">
<label class="title-label" for="title"></label>
<input
class="input-text book-title"
placeholder="Title"
type="text"
id="title"
required
/>
</div>
<div class="form-input">
<label class="Author-label" for="author"></label>
<input
class="input-text book-author"
placeholder="Author"
type="text"
id="author"
required
/>
</div>
<div class="form-btn">
<button class="book-add" type="submit">Add</button>
</div>
</form>
</div>
</section>
<section id="contact" class="contact section close">
<div class="container container-pall">
<h2 class="section__title">Conatct Information</h2>
<p class="contact__description">
Do you have any questions or just want to say "Hello"?<span
>Connect with me:</span
>
</p>
<div class="contact__details">
<ul class="mohi-contacts contact__detail">
<h3 class="section-subtitle">Mohi</h3>
<li>
<a
href="https://twitter.com/Kholochelam"
class="contact__link"
target="_blank"
>Twitter <i class="fa-brands fa-twitter"></i
></a>
</li>
<li>
<a
href="https://github.com/mohisa302"
class="contact__link"
target="_blank"
>Github <i class="fa-brands fa-github"></i
></a>
</li>
</ul>
</div>
</div>
</section>
</main>
<footer id="footer" class="footer">
<div class="container containerpall">
<a href="#hero" class="footer__logo logo">Awesome Books</a>
<div class="copyright">
<p>Awesome Books 2023. Some rights reserved</p>
</div>
</div>
</footer>
</body>
</html>