-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhitsounds.html
83 lines (83 loc) · 2.4 KB
/
hitsounds.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
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hitsounds Downloads - Complexity osu! Skin</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;
}
.download-link {
display: block;
margin: 10px 0;
padding: 10px;
background-color: #f0f0f0;
text-align: center;
border-radius: 5px;
text-decoration: none;
color: #333;
}
.download-link:hover {
background-color: #e0e0e0;
}
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="form.html">Community</a></li>
<li><a href="https://osu.ppy.sh/community/forums/topics/2006176?n=1">Download</a></li>
<li><a href="cheats.html">Cheats</a></li>
<li><a href="crew.html">Crew</a></li>
</ul>
</nav>
</header>
<section id="hitsounds">
<h2>Hitsounds Downloads</h2>
<a href="downloads/Argon%20Hitsounds.zip" class="download-link" download>Download Argon Hitsounds</a>
<a href="downloads/Argonpro%20Hitsounds.zip" class="download-link" download>Download Argonpro Hitsounds</a>
<a href="downloads/Triangles%20Hitsounds.zip" class="download-link" download>Download Triangles Hitsounds</a>
</section>
<footer>
<p>© 2024 Complexity osu! Skin</p>
</footer>
</body>
</html>