-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
52 lines (48 loc) · 2.42 KB
/
Copy pathfooter.html
File metadata and controls
52 lines (48 loc) · 2.42 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
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Footer Example</title>
<link rel="stylesheet" href="footer.css">
</head>
<body>
<footer class="footer">
<div class="footer-top">
<div class="social-icons">
<a href="#" aria-label="Instagram">
<img src="https://static.vecteezy.com/system/resources/previews/018/930/413/original/instagram-logo-instagram-icon-transparent-free-png.png"
alt="Instagram Logo">
</a>
<a href="#" aria-label="Twitter">
<img src="https://www.teahub.io/photos/full/11-115962_facebook-logo-png-transparent-background-facebook-png.png"
alt="Twitter Logo" >
</a>
<a href="#" aria-label="YouTube">
<img src="https://static.vecteezy.com/system/resources/previews/018/930/575/original/youtube-logo-youtube-icon-transparent-free-png.png"
alt="YouTube Logo">
</a>
</div>
</div>
<div class="footer-bottom">
<section>
<p>© 2024, GameVerse, Inc. All rights reserved. Epic, Gameverse Games, the Gameverse logo, Fortnite,
the Fortnite logo, Unreal, Unreal Engine, the Unreal Engine logo, Unreal Tournament, and the Unreal Tournament
logo are trademarks or registered trademarks of Epic Games, Inc. in the United States of America and elsewhere.
Other brands or product names are the trademarks of their respective owners.</p>
<p>Our websites may contain links to other sites and resources provided by third parties. These links are provided
for your convenience only. Epic Games has no control over the contents of those sites or resources, and accepts no
responsibility for them or for any loss or damage that may arise from your use of them.</p>
</section>
<div class="footer-policies">
<a href="#">Terms of Service</a> |
<a href="#">Privacy Policy</a> |
<a href="#">Store Refund Policy</a>
</div>
<div class="footer-logos_">
<img src="logo6.png" alt="GameVerse Logo" width="50">
</div>
</div>
</footer>
</body>
</html>