forked from Diamond-FoxUA/codeV1be-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
49 lines (47 loc) · 1.59 KB
/
Copy pathfooter.html
File metadata and controls
49 lines (47 loc) · 1.59 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
<footer class="footer">
<div class="container">
<div class="content">
<div class="footer-nav">
<a href="./index.html" class="logo footer-logo">
<svg class="logo-icon" width="83" height="21">
<use href="./img/icons.svg#icon-book"></use>
</svg>
</a>
<ul class="footer-menu">
<li class="footer-nav-link">
<a href="./index.html">Home</a>
</li>
<li class="footer-nav-link">
<a href="#books" class="footer-nav-link">Books</a>
</li>
<li class="footer-nav-link">
<a href="#feedbacks" class="footer-nav-link">Feedback</a>
</li>
<li class="footer-nav-link">
<a href="#location" class="footer-nav-link">Location</a>
</li>
</ul>
</div>
<div class="join-form">
<p class="join-title">Join</p>
<div class="form">
<input
type="email"
class="join-input"
placeholder="Enter your email"
required
pattern="^\w+(\.\w+)?@[a-zA-Z_]+?\.[a-zA-Z]{2,3}$"
title="Приклад: name@domain.com (допускається одна крапка в імені та TLD з 2–3 літер)."
autocomplete="email"
inputmode="email"
/>
<button type="submit" class="join-btn">Sign Up</button>
</div>
<p class="required">* Required field</p>
</div>
</div>
<div class="credits">
<p class="text-muted">© 2025 Booksy. All rights reserved.</p>
</div>
</div>
</footer>