Skip to content

Commit e8727fe

Browse files
authored
Update index.html
1 parent 9d91844 commit e8727fe

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

index.html

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,32 @@
1-
<h1>Hi this is my website</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>Java Game Stuff</title>
7+
<link rel="stylesheet" href="styles.css">
8+
</head>
9+
<body>
10+
<header>
11+
<h1>Welcome to Java Game Stuff</h1>
12+
<nav>
13+
<ul>
14+
<li><a href="index.html">Home</a></li>
15+
<li><a href="about.html">About</a></li>
16+
<li><a href="docs.html">Documentation</a></li>
17+
<li><a href="contact.html">Contact</a></li>
18+
</ul>
19+
</nav>
20+
</header>
21+
<main>
22+
<section>
23+
<h2>Introduction</h2>
24+
<p>This Java application allows you to enjoy various games.</p>
25+
<a href="https://github.com/CodePearly/JavaGameStuff" target="_blank">Download Now</a>
26+
</section>
27+
</main>
28+
<footer>
29+
<p>&copy; 2025 Java Game Stuff. All rights reserved.</p>
30+
</footer>
31+
</body>
32+
</html>

0 commit comments

Comments
 (0)