-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
193 lines (177 loc) · 5.82 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!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" />
<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=Grandstander:wght@200&display=swap"
rel="stylesheet"
/>
<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=Lexend+Exa:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<title>Book Search App</title>
<script defer src="./script.js"></script>
</head>
<body>
<header class="header">
<a href="#" class="logo">
<ul>
<li><b>NEW</b>CHAPTER</li>
<li>book store</li>
</ul>
</a>
<nav class="nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Pages</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">Articles</a></li>
<li><a href="#">Contacts</a></li>
</ul>
</nav>
<form class="search-bar">
<input
class="search-input"
type="search"
name="search"
placeholder="Search by title, author or keyword"
/>
<button class="search-button"></button>
</form>
<button class="login-button">Log In</button>
<div class="modal-overlay" hidden>
<div class="login-window">
<div class="login-picture">
<ul>
<li><b>NEW</b>CHAPTER</li>
<li>book store</li>
</ul>
</div>
<div class="login-info">
<h4><b>Log In</b> Now</h4>
<input type="text" placeholder="Enter your username" />
<input type="password" placeholder="Enter your password" />
<button class="password-recovery">Forgot your password?</button>
<button class="login-button">Log In</button>
<div>
Don't have any account?
<button class="sign-button">Sign up now</button>
</div>
</div>
</div>
</div>
</header>
<main class="main">
<section class="billboard__section">
<div class="container"></div>
</section>
<section class="clients__section">
<div class="container">
<ul class="clients-list">
<li>
<a href="#"
><img src="./img/client-image2.png" alt="client logo"
/></a>
</li>
<li>
<a href="#"
><img src="./img/client-image3.png" alt="client logo"
/></a>
</li>
<li>
<a href="#"
><img src="./img/client-image4.png" alt="client logo"
/></a>
</li>
<li>
<a href="#"
><img src="./img/client-image5.png" alt="client logo"
/></a>
</li>
</ul>
</div>
</section>
<section class="featured-books__section">
<div class="container"></div>
</section>
<section class="bestsellers__section">
<div class="container"></div>
</section>
<section class="popular-books__section">
<div class="container"></div>
</section>
<section class="quotes__section">
<div class="quotes-content">
<h2>Quotes about Books & Reading</h2>
<div class="quote-image">
<div class="quote">
Outside of a dog, a book is a man’s best friend. Inside of a dog,
it’s too dark to read.
</div>
<div class="quote-author">Groucho Marx</div>
</div>
</div>
<div class="slider-buttons">
<button class="button-prev">←</button>
<button class="button-next">→</button>
</div>
</section>
<section class="subscription__section">
<div class="container">
<div class="subscription-content">
<h2 class="subscription-title">Subscribe To Our Newsletter</h2>
<div class="subscription-info">
<div class="text">
Excepteur sint occaecat cupidatat non proident, sunt in culpa
qui officia deserunt mollit anim id est laborum.
</div>
<form id="form" class="form">
<input
class="input"
type="text"
name="email"
placeholder="Enter your email address here"
/>
<button class="btn-subscribe">
<span>send</span>
<i class="icon icon-send"></i>
</button>
</form>
</div>
</div>
</div>
</section>
<section class="articles__section"><div class="container"></div></section>
<section class="app__section"><div class="container"></div></section>
</main>
<footer class="footer">
<div>created by filonushka_v</div>
<div class="links">
<a
href="https://github.com/filonushka"
class="github_link link"
target="_blank"
></a>
<a
href="https://www.linkedin.com/in/valeriya-filonova-89b89712b/"
class="linkedin_link link"
target="_blank"
></a>
<a
href="https://www.instagram.com/filonushka_v/"
class="instagram_link link"
target="_blank"
></a>
</div>
</footer>
</body>
</html>