Skip to content

Commit 902d297

Browse files
Add initial HTML structure for Java practice repo
1 parent d6170e1 commit 902d297

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

index.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Java Programming Practice | Core Java Examples</title>
6+
<meta name="description" content="A complete Java programming practice repository covering basics, arrays, strings, loops, OOP concepts, and problem-solving examples.">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
</head>
9+
<body>
10+
<h1>Java Programming Practice</h1>
11+
12+
<p>
13+
This repository contains Java programming practice problems and examples,
14+
starting from basic concepts to intermediate problem-solving.
15+
</p>
16+
17+
<h2>Topics Covered</h2>
18+
<ul>
19+
<li>Java Basics</li>
20+
<li>Control Statements</li>
21+
<li>Arrays</li>
22+
<li>Strings</li>
23+
<li>Object-Oriented Programming</li>
24+
<li>Practice Problems</li>
25+
</ul>
26+
27+
<h2>Repository</h2>
28+
<p>
29+
View the full source code on GitHub:
30+
<a href="https://github.com/curious-vasavi/Java_Programming_Practice">
31+
Java Programming Practice Repository
32+
</a>
33+
</p>
34+
35+
<p>
36+
Updated regularly with new Java practice programs.
37+
</p>
38+
</body>
39+
</html>

0 commit comments

Comments
 (0)