-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
20 lines (20 loc) · 855 Bytes
/
Copy pathfooter.html
File metadata and controls
20 lines (20 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<footer class="footer" aria-label="Footer">
<div class="footer__content">
<div class="footer__left">
© 2025 GKY E‑Systems. All rights reserved.
</div>
<div class="footer__links">
<a href="index.html">Home</a>
<a href="solutions.html">Solutions</a>
<a href="about.html">About</a>
<a href="why-choose-us.html">Why Choose Us</a>
<a href="careers.html">Careers</a>
<a href="contact.html">Contact</a>
</div>
<form class="footer__newsletter" onsubmit="event.preventDefault();">
<label for="newsletter-email" class="footer__newsletter-label">Newsletter:</label>
<input type="email" id="newsletter-email" class="footer__newsletter-input" placeholder="Your email" required>
<button type="submit" class="footer__newsletter-btn">Sign Up</button>
</form>
</div>
</footer>