Skip to content

Commit 0f3c2ee

Browse files
:wq :wq :w`# especially if it merges an updated upstream into a topic branch.
2 parents 16be20c + af8715c commit 0f3c2ee

3 files changed

Lines changed: 84 additions & 24 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ through day-wise problem solving.
4242
- **Day 08: Advance Number Programs**
4343
👉 [View Day 08 Programs](src/number_Programming/advance/day_08)
4444

45+
## 📁 Core Level – Array Programming
4546

47+
- **Day 09: Core Array Programs**
48+
👉 [View Day 09 Programs](src/array_Programming/core/day_09)
4649

4750
---
4851

index.html

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,35 +5,38 @@
55
<title>Java Programming Practice | Core Java Examples</title>
66
<meta name="description" content="A complete Java programming practice repository covering basics, arrays, strings, loops, OOP concepts, and problem-solving examples.">
77
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<link rel="stylesheet" href="style.css">
89
</head>
910
<body>
10-
<h1>Java Programming Practice</h1>
11+
<div class="container">
12+
<h1>Java Programming Practice</h1>
1113

12-
<p>
13-
This repository contains Java programming practice problems and examples,
14-
starting from basic concepts to intermediate problem-solving.
15-
</p>
14+
<p>
15+
This repository contains Java programming practice problems and examples,
16+
starting from basic concepts to intermediate problem-solving.
17+
</p>
1618

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>
19+
<h2>Topics Covered</h2>
20+
<ul>
21+
<li>Java Basics</li>
22+
<li>Control Statements</li>
23+
<li>Arrays</li>
24+
<li>Strings</li>
25+
<li>Object-Oriented Programming</li>
26+
<li>Practice Problems</li>
27+
</ul>
2628

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>
29+
<h2>Repository</h2>
30+
<p>
31+
View the full source code on GitHub:
32+
<a href="https://github.com/curious-vasavi/Java_Programming_Practice" target="_blank">
33+
Java Programming Practice Repository
34+
</a>
35+
</p>
3436

35-
<p>
36-
Updated regularly with new Java practice programs.
37-
</p>
37+
<div class="footer">
38+
Updated regularly with new Java practice programs.
39+
</div>
40+
</div>
3841
</body>
3942
</html>

style.css

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
body {
2+
font-family: Arial, Helvetica, sans-serif;
3+
background-color: #f4f6f8;
4+
margin: 0;
5+
padding: 0;
6+
line-height: 1.6;
7+
}
8+
9+
.container {
10+
max-width: 900px;
11+
margin: 40px auto;
12+
background: #ffffff;
13+
padding: 30px;
14+
border-radius: 8px;
15+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
16+
}
17+
18+
h1 {
19+
color: #2c3e50;
20+
margin-bottom: 10px;
21+
}
22+
23+
h2 {
24+
color: #34495e;
25+
margin-top: 30px;
26+
}
27+
28+
p {
29+
color: #555;
30+
}
31+
32+
ul {
33+
padding-left: 20px;
34+
}
35+
36+
li {
37+
margin: 8px 0;
38+
}
39+
40+
a {
41+
color: #1a73e8;
42+
text-decoration: none;
43+
font-weight: 500;
44+
}
45+
46+
a:hover {
47+
text-decoration: underline;
48+
}
49+
50+
.footer {
51+
margin-top: 40px;
52+
font-size: 14px;
53+
color: #777;
54+
}

0 commit comments

Comments
 (0)