Skip to content

Commit a2074fa

Browse files
authored
Update index.html
1 parent 9598549 commit a2074fa

File tree

1 file changed

+122
-1
lines changed

1 file changed

+122
-1
lines changed

Releases/index.html

Lines changed: 122 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,122 @@
1-
<h1>Releases</h1>
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Individual Games</title>
7+
<link rel="icon" type="image/png" href="../img/gamescomp.png">
8+
<style>
9+
body {
10+
font-family: 'Courier New', Courier, monospace;
11+
margin: 0;
12+
padding: 0;
13+
background-color: #1e1e1e;
14+
color: #dcdcdc;
15+
}
16+
17+
header {
18+
background-color: #007396; /* Java blue */
19+
color: #fff;
20+
padding: 20px 0;
21+
text-align: center;
22+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
23+
}
24+
25+
nav ul {
26+
list-style: none;
27+
padding: 0;
28+
display: flex;
29+
justify-content: center;
30+
}
31+
32+
nav ul li {
33+
margin: 0 15px;
34+
}
35+
36+
nav ul li a {
37+
color: #fff;
38+
text-decoration: none;
39+
font-weight: bold;
40+
transition: color 0.3s;
41+
}
42+
43+
nav ul li a:hover {
44+
color: #ff5722; /* Highlight color */
45+
}
46+
47+
main {
48+
padding: 40px 20px;
49+
text-align: center;
50+
background-color: #2d2d2d;
51+
color: #dcdcdc;
52+
min-height: 60vh;
53+
}
54+
55+
main h2 {
56+
font-size: 2.5em;
57+
margin-bottom: 10px;
58+
}
59+
60+
main p {
61+
font-size: 1.2em;
62+
margin-bottom: 20px;
63+
}
64+
65+
section {
66+
padding: 40px 20px;
67+
background-color: #333;
68+
border-radius: 10px;
69+
margin: 20px 0;
70+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
71+
}
72+
73+
footer {
74+
background-color: #007396; /* Java blue */
75+
color: #fff;
76+
text-align: center;
77+
padding: 20px 0;
78+
position: relative;
79+
width: 100%;
80+
}
81+
82+
footer p {
83+
margin: 0;
84+
}
85+
</style>
86+
</head>
87+
<body>
88+
<header>
89+
<h1>Releases</h1>
90+
<nav>
91+
<ul>
92+
<li><a href="../#home">Home</a></li>
93+
<li><a href="../#about">About</a></li>
94+
<li><a href="../#releases">Releases</a></li>
95+
<li><a href="../Games/">Individual Games</a></li>
96+
</ul>
97+
</nav>
98+
</header>
99+
<main>
100+
<section>
101+
<h2>v1.0</h2>
102+
<p>Details about version 1.0</p>
103+
</section>
104+
<section>
105+
<h2>v1.1</h2>
106+
<p>Details about version 1.1</p>
107+
</section>
108+
<section>
109+
<h2>v1.2</h2>
110+
<p>Details about version 1.2</p>
111+
</section>
112+
</main>
113+
<footer>
114+
<p>&copy; 2025 Java Game Application. All rights reserved.</p>
115+
</footer>
116+
<script>
117+
document.addEventListener('DOMContentLoaded', () => {
118+
console.log('Games page is loaded!');
119+
});
120+
</script>
121+
</body>
122+
</html>

0 commit comments

Comments
 (0)