-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
56 lines (53 loc) · 2.45 KB
/
gallery.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GD Gallery!</title>
<link rel="stylesheet" href="css/style1.css">
</head>
<body>
<div class="content">
<header class="header">
<a class="logo" href="index.html">FireDestik</a>
<nav class="navigation">
<a href="mods.html">Mods</a>
</nav>
</header>
<main>
<h1 class="center glow">GD Gallery</h1>
<div class="row">
<img src="assets/GeometryDash1.png" alt="" class="pic">
<img src="assets/GD2.png" alt="" class="pic">
<img src="assets/GD3.png" alt="" class="pic">
</div>
<div class="row">
<img src="assets/GD4.png" alt="" class="pic">
<img src="assets/GD5.png" alt="" class="pic">
<img src="assets/GD6.png" alt="" class="pic">
</div>
<div class="row">
<img src="assets/GD7.png" alt="" class="pic">
<img src="assets/GD8.png" alt="" class="pic">
<img src="assets/GD9.png" alt="" class="pic">
</div>
</main>
<footer>
<p>Fan-Made website (RobtopGames isn't related to this Website). FireDestik © 2024. Made with love.</p>
<div style="margin-top: 10px;">
<a href="https://steamcommunity.com/sharedfiles/filedetails/?id=3151760067"
style="margin-right: 10px; color: gray; text-decoration: none;">FAQ</a>
<a href="mailto:[email protected]"
style="margin-right: 10px; color: gray; text-decoration: none;">Support</a>
<a href="https://geometry-dash.me/privacy-policy"
style="margin-right: 10px; color: gray; text-decoration: none;">Privacy Policy</a>
<a href="https://www.robtopgames.com/tos.html"
style="margin-right: 10px; color: gray; text-decoration: none;">Terms of Service</a>
<a href="https://www.robtopgames.com/files/GDEditor.pdf"
style="color: gray; text-decoration: none;">Build Guide</a>
<a href="mymind.html" style="color: gray; text-decoration: none;" class="glow">My Thoughts</a>
</div>
</footer>
</div>
</body>
</html>