-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
215 lines (205 loc) Β· 7.47 KB
/
index.html
File metadata and controls
215 lines (205 loc) Β· 7.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="https://avatars.githubusercontent.com/u/172573281?s=200&v=4" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Java Learning Platform</title>
<link rel="stylesheet" href="styles.css" />
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
</head>
<body>
<!-- Theme Toggle -->
<button id="theme-toggle">π</button>
<!-- Mobile Nav Toggle -->
<button id="menu-toggle">
<img src="IMAGES/menu.png" alt="Menu" class="menu-icon">
</button>
<!-- Sidebar -->
<aside id="sidebar">
<div class="logo">
<img src="https://avatars.githubusercontent.com/u/172573281?s=200&v=4" alt="Java Logo" style="border-radius:100%" class="java-logo" />
<h2>Java Course</h2>
<br />
<h3>Beginner ---> Advance </h3>
<hr class="styled-hr" />
</div>
<nav class="nav-sections">
<!-- Java Installation -->
<section>
<button class="dropdown-btn"><a href="#java-installation/" onclick="loadContent('java-installation/')">--->Java π οΈβοΈπ₯</a>
</section>
<!-- Core Java -->
<section>
<button class="dropdown-btn">Core Java βΎ</button>
<ul class="dropdown-container">
<li>
<a href="#core-java/java-basics" onclick="loadContent('core-java/java-basics/')"
>π Java Basics</a
>
</li>
<li>
<a
href="#core-java/variables-data-types"
onclick="loadContent('core-java/variables-data-types/')"
>π‘ Tokens & Data Types</a
>
</li>
<li>
<a href="#core-java/control-flow" onclick="loadContent('core-java/control-flow/')"
>π Control Flow</a
>
</li>
<li>
<a href="#core-java/oops-basics" onclick="loadContent('core-java/oops-basics/')"
>ποΈ OOP Basics</a
>
</li>
<li>
<a href="#core-java/methods" onclick="loadContent('core-java/methods/')"
>π§ Methods</a
>
</li>
<li>
<a href="#core-java/threads" onclick="loadContent('core-java/threads/')"
>π§΅ Threads</a
>
</li>
<li>
<a href="#core-java/arrays-collections" onclick="loadContent('core-java/arrays-collections/')"
>[1,2,3] Arrays & Collections</a
>
</li>
<li>
<a
href="#core-java/functional-programming"
onclick="loadContent('core-java/functional-programming/')"
>π§ Functional Programming</a
>
</li>
<li>
<a href="#core-java/exception-handling" onclick="loadContent('core-java/exception-handling/')"
>β οΈ Exception Handling</a
>
</li>
</ul>
</section>
<!-- Advanced Java -->
<section>
<button class="dropdown-btn">Advanced Java βΎ</button>
<ul class="dropdown-container">
<li>
<a href="#advanced-java/inheritance" onclick="loadContent('advanced-java/inheritance/')"
>𧬠Inheritance</a
>
</li>
<li>
<a href="#advanced-java/abstraction" onclick="loadContent('advanced-java/abstraction/')"
>π Abstraction</a
>
</li>
<li>
<a href="#advanced-java/encapsulation" onclick="loadContent('advanced-java/encapsulation/')"
>π Encapsulation</a
>
</li>
<li>
<a href="#advanced-java/polymorphism" onclick="loadContent('advanced-java/polymorphism/')"
>π Polymorphism </a
>
</li>
<li>
<a
href="#advanced-java/advanced-threads"
onclick="loadContent('advanced-java/advanced-threads/')"
>π Advanced Threads</a
>
</li>
<li>
<a href="#advanced-java/file-io" onclick="loadContent('advanced-java/file-io/')"
>π File I/O</a
>
</li>
<li>
<a href="#advanced-java/jdbcodbc" onclick="loadContent('advanced-java/jdbcodbc/')"
>ποΈ JDBC</a
>
</li>
<li>
<a href="#advanced-java/collections" onclick="loadContent('advanced-java/collections/')"
>π¦ COLLECTIONS</a
>
</li>
</ul>
</section>
<!-- Senior Level -->
<section>
<button class="dropdown-btn">Senior Level βΎ</button>
<ul class="dropdown-container">
<li>
<a href="#senior-java/advanced-jdbc" onclick="loadContent('senior-java/advanced-jdbc/')"
>πAdvanced JDBC /ODBC </a
>
</li>
<li>
<a href="#senior-java/big-data" onclick="loadContent('senior-java/big-data/')"
>π Big Data</a
>
</li>
<li>
<a href="#senior-java/design-pattern" onclick="loadContent('senior-java/design-pattern/')"
>π¨ Design Pattern</a
>
</li>
<li>
<a href="#senior-java/microservices" onclick="loadContent('senior-java/microservices/')"
>βοΈ Microservices</a
>
</li>
<li>
<a
href="#senior-java/performance-tunning"
onclick="loadContent('senior-java/performance-tunning/')"
>π Performance Tuning</a
>
</li>
<li>
<a href="#senior-java/servelt-jsp" onclick="loadContent('senior-java/servelt-jsp/')"
>π Servlet & JSP</a
>
</li>
<li>
<a
href="#senior-java/spring-framework"
onclick="loadContent('senior-java/spring-framework/')"
>πΏ Spring Framework</a
>
</li>
</ul>
</section>
<section>
<button class="dropdown-btn" style="background-color:rgb(16, 217, 16);"><a href="#interviewquestions/" onclick="loadContent('interviewquestions/')">Interview Questions</a>
</section>
</nav>
<div class="join-community-wrapper">
<a href="http://github.com/techquanta" class="join-community" target="_blank" rel="noopener">
π€ Join Our Community
</a>
</div>
</aside>
<!-- Main Content -->
<main id="main-content">
<header>
<h1 class="welcome">
<span class="hide-on-mobile">Welcome to Your </span><span class="highlight">Java(Oak)</span><span class="hide-on-mobile"> Journey </span>
</h1>
<!-- <p class="guide">Click on a topic in the sidebar to begin learning.</p> -->
</header>
<section id="dynamic-content">
<!-- Markdown content will be loaded here -->
</section>
</main>
<!-- JavaScript -->
<script src="script.js"></script>
</body>
</html>