-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
82 lines (82 loc) · 2.35 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Complexity osu! Skin Gallery</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
padding: 10px 0;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 10px;
}
nav ul li a {
color: white;
text-decoration: none;
padding: 8px 16px;
}
nav ul li a:hover {
text-decoration: underline;
}
section {
padding: 20px;
}
.gallery img {
max-width: 100%;
height: auto;
display: block;
margin: 10px 0;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="newdownloads.html">Download</a></li>
<li><a href="form.html">Forums</a></li>
<li><a href="cheats.html">Cheats</a></li>
</ul>
</nav>
</header>
<section id="gallery">
<h2>Screenshots</h2>
<div class="gallery">
<img src="screenies/screenshot156.jpg" alt="Screenshot 156">
<img src="screenies/screenshot157.jpg" alt="Screenshot 157">
<img src="screenies/screenshot158.jpg" alt="Screenshot 158">
<img src="screenies/screenshot159.jpg" alt="Screenshot 159">
<img src="screenies/screenshot160.jpg" alt="Screenshot 160">
<img src="screenies/screenshot161.jpg" alt="Screenshot 161">
<img src="screenies/screenshot162.jpg" alt="Screenshot 162">
<img src="screenies/screenshot163.jpg" alt="Screenshot 163">
</div>
</section>
<footer>
<p>© 2024 Complexity osu! Skin</p>
</footer>
</body>
</html>