Skip to content

Commit 87460b2

Browse files
committed
Final Release Preview.
Signed-off-by: Someshdiwan <[email protected]>
1 parent 5998e5f commit 87460b2

File tree

1 file changed

+55
-14
lines changed

1 file changed

+55
-14
lines changed

README.md

Lines changed: 55 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,56 @@
1-
# JavaEvolution: Learning, Growing, Mastering
1+
<!-- ===========================
2+
BANNER: Make The JAVA Great Again - Join Our Community
3+
=========================== -->
4+
<!-- Font Awesome -->
5+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
6+
<div align="center" style="background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1); padding: 2.5rem; border-radius: 15px; animation: pulseBackground 6s infinite; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); position: relative; overflow: hidden;">
7+
<a href="https://someshdiwan.github.io/JavaEvolution-Learning-Growing-Mastering/" target="_blank">
8+
<strong style="font-size: 4em; text-transform: uppercase; font-family: 'Montserrat', 'Roboto', 'Arial', 'Helvetica', sans-serif; color: #FFFFFF; letter-spacing: 6px; text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4); transition: transform 0.4s, color 0.4s; animation: bounce 2s infinite; font-weight: 700;">
9+
Make The JAVA Great Again
10+
</strong>
11+
</a>
12+
<p style="margin-top: 1.5rem; font-size: 1.5em; color: #FFFFFF; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); font-family: 'Open Sans', 'Roboto', 'Arial', 'Helvetica', sans-serif; font-weight: 600;">
13+
Join our thriving community of <strong style="color: #FFFFFF; font-weight: 800;">active contributors</strong> and help shape the future of Java learning!
14+
</p>
15+
<p style="margin-top: 1rem; font-size: 1.4em; color: #FFFFFF; font-family: 'Roboto', 'Open Sans', 'Arial', 'Helvetica', sans-serif; font-weight: 600;">
16+
<a href="https://github.com/Someshdiwan/JavaEvolution-Learning-Growing-Mastering/blob/master/site/CONTRIBUTING.md" target="_blank" style="font-weight: bold; text-decoration: none; padding: 15px 30px; border: 3px solid #FFFFFF; border-radius: 30px; background-color: #4ECDC4; color: #FFFFFF; transition: all 0.4s ease; animation: float 3s infinite; font-family: 'Montserrat', 'Roboto', 'Arial', 'Helvetica', sans-serif;">
17+
<i class="fas fa-rocket"></i> Join Us
18+
</a>
19+
<a href="https://someshdiwan.github.io/JavaEvolution-Learning-Growing-Mastering/" target="_blank" style="font-weight: bold; text-decoration: none; padding: 15px 30px; border: 3px solid #FFFFFF; border-radius: 30px; background-color: #FF6B6B; color: #FFFFFF; margin-left: 1rem; transition: all 0.4s ease; animation: float 3s infinite 1.5s; font-family: 'Montserrat', 'Roboto', 'Arial', 'Helvetica', sans-serif;">
20+
<i class="fas fa-globe"></i> Open Live Guide
21+
</a>
22+
</p>
23+
</div>
224

3-
![Daily Java Codes](Others/banner.svg)
4-
5-
Working will be updated soon.
6-
7-
Welcome to **JavaEvolution**, your one-stop guide for mastering Java from basics to advanced concepts.
8-
This repository is structured for learners at every level, featuring categorized content, guides, examples, and best practices.
9-
10-
🔗 For full content: [View Site](https://someshdiwan.github.io/JavaEvolution-Learning-Growing-Mastering/)
11-
12-
13-
![Badge](https://github.com/Someshdiwan/JavaEvolution-Learning-Growing-Mastering/actions/workflows/jekyll-gh-pages.yml/badge.svg?branch=master&t=1)
14-
15-
> A GitHub Pages site powered by Jekyll to explore Java in depth...
25+
<style>
26+
@keyframes pulseBackground {
27+
0% { background-position: 0% 0%; }
28+
50% { background-position: 100% 100%; }
29+
100% { background-position: 0% 0%; }
30+
}
31+
@keyframes bounce {
32+
0%, 100% { transform: translateY(0); }
33+
50% { transform: translateY(-10px); }
34+
}
35+
@keyframes float {
36+
0% { transform: translateY(0); }
37+
50% { transform: translateY(-5px); }
38+
100% { transform: translateY(0); }
39+
}
40+
strong:hover {
41+
transform: scale(1.2);
42+
color: #FFD700;
43+
text-shadow: 4px 4px 8px rgba(255, 215, 0, 0.6);
44+
}
45+
a:hover {
46+
background-color: #FFFFFF;
47+
color: #4ECDC4;
48+
transform: scale(1.1);
49+
}
50+
@media (max-width: 768px) {
51+
strong { font-size: 2.8em; }
52+
p { font-size: 1.2em; }
53+
a { padding: 10px 20px; margin-left: 0; display: block; margin-bottom: 1rem; }
54+
a:last-child { margin-bottom: 0; }
55+
}
56+
</style>

0 commit comments

Comments
 (0)