forked from arunanramanathan1/arunanramanathan1.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
319 lines (277 loc) · 11.3 KB
/
index.html
File metadata and controls
319 lines (277 loc) · 11.3 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Java Workshop: Java 8 to 21</title>
<style>
:root {
--primary-color: #f89820; /* Java Orange */
--secondary-color: #5382a1; /* Java Blue */
--accent-color: #e74c3c;
--dark-bg: #2c3e50;
--light-bg: #f4f7f6;
--text-color: #333;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: var(--light-bg);
color: var(--text-color);
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: #fff;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
header {
background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
color: white;
padding: 40px 20px;
text-align: center;
border-bottom: 5px solid var(--primary-color);
}
h1 {
margin: 0;
font-size: 2.2rem;
text-transform: uppercase;
letter-spacing: 1px;
}
.note-box {
background-color: #fff3cd;
border-left: 5px solid #ffc107;
padding: 15px;
margin: 20px 0;
font-weight: bold;
}
.bio-section {
border-bottom: 2px solid #eee;
padding-bottom: 20px;
margin-bottom: 20px;
}
.highlight-text {
color: var(--secondary-color);
font-weight: bold;
}
.topics-list {
background-color: #f9f9f9;
padding: 20px;
border-radius: 8px;
border: 1px solid #ddd;
}
.topics-list h2 {
color: var(--primary-color);
border-bottom: 2px solid var(--primary-color);
display: inline-block;
}
ul {
list-style-type: none;
padding-left: 0;
}
ul li {
padding: 5px 0;
border-bottom: 1px solid #eee;
}
.sub-list {
padding-left: 20px;
font-size: 0.95rem;
list-style-type: disc;
}
.sub-list li {
border-bottom: none;
}
.outcomes, .requirements, .who-for {
margin: 30px 0;
padding: 20px;
border-radius: 8px;
}
.outcomes { background-color: #e8f4fd; border-left: 5px solid var(--secondary-color); }
.requirements { background-color: #fdf2f2; border-left: 5px solid var(--accent-color); }
.who-for { background-color: #f0fdf4; border-left: 5px solid #28a745; }
.feedback-section {
font-style: italic;
background: #fff;
padding: 20px;
border: 1px dashed #ccc;
}
.pricing-section {
text-align: center;
padding: 40px 20px;
background: #fff;
margin-top: 20px;
}
.old-price {
text-decoration: line-through;
color: #888;
font-size: 1.2rem;
}
.new-price {
display: block;
color: var(--accent-color);
font-size: 3rem;
font-weight: <strong>bold</strong>;
margin: 10px 0;
}
.register-btn {
display: inline-block;
background-color: #28a745;
color: white;
padding: 20px 50px;
font-size: 1.5rem;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
transition: transform 0.2s, background-color 0.2s;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
box-sizing: border-box; /* Ensures padding doesn't affect width */
}
.register-btn:hover {
background-color: #218838;
transform: scale(1.05);
}
.udemy-link {
display: block;
word-wrap: break-word;
color: var(--secondary-color);
margin-top: 10px;
}
/* Mobile Adjustments */
@media (max-width: 600px) {
h1 { font-size: 1.6rem; }
.container { padding: 10px; }
.register-btn {
display: block; /* Changes from inline-block to block */
width: 100%; /* Takes full available width */
max-width: 300px; /* Prevents it from being too wide on some devices */
margin: 0 auto; /* Centers the block element */
padding: 15px 20px;
font-size: 1.3rem;
text-align: center;
}
.new-price { font-size: 2.2rem; }
}
</style>
</head>
<body>
<header>
<h1>Intensive advanced one day workshop from Java 8 until Java 21</h1>
</header>
<div class="container">
<p>Dear Learners,</p>
<div class="price-box">
<span class="old-price">Rs.15,999</span>
<span class="new-price">Early Bird Price: Rs.2999</span>
<div class="note-box">
NOTE : there is a pre-requisite for this workshop, in order to understand the content, you should know core java, if you don't know basic Core Java then this workshop is not for you.
</div>
<section class="bio-section">
<p>My name is <span class="highlight-text">Arunan Ramanathan</span>, I have more than 25 years of experience when it comes to Java and 18 years of experience in corporate world.</p>
<p>I have 3 Java certifications in my belt,</p>
<ol>
<li>Sun certified Java 1.4 Programmer</li>
<li>Oracle certified Java 7 Programmer</li>
<li>Oracle certified Java 8 Programmer</li>
</ol>
</section>
<p>Enough about me, we are going to cover the following topics in the one day workshop</p>
<div class="topics-list">
<h2>1. JAVA 8</h2>
<ul>
<li>•Functional Programming</li>
<li>•Lambda Expressions
<ul class="sub-list">
<li>Functional Interfaces</li>
<li>Method References</li>
</ul>
</li>
<li>•Streams
<ul class="sub-list">
<li>Filtering and Slicing</li>
<li>Mapping</li>
<li>Finding and Matching</li>
<li>Reducing</li>
<li>Numeric Streams</li>
</ul>
</li>
<li>•Collecting data with Streams
<ul class="sub-list">
<li>Grouping</li>
<li>Partitioning</li>
</ul>
</li>
<li>•Parallel Streams</li>
<li>•Default Methods</li>
<li>•Optional</li>
<li>•Completable Future</li>
<li>•New Date/Time API</li>
<li>•Miscellaneous</li>
</ul>
<h2>2. Java 9</h2>
<ul><li>•Modules</li></ul>
<h2>3. Java 10 new features</h2><br>
<h2>4. Java 11 new features</h2><br>
<h2>5. Java 12 new features</h2><br>
<h2>6. Java 13 new features</h2><br>
<h2>7. Java 14 new features</h2><br>
<h2>8. Java 15 new features</h2><br>
<h2>10. Java 16 new features</h2><br>
<h2>11. Java 17 new features</h2><br>
<h2>12. Java 18 new features</h2><br>
<h2>13. Java 19 new features</h2><br>
<h2>14. Java 20 new features</h2><br>
<h2>15. Java 21 new features</h2><br>
</div>
<p style="text-align: center; font-weight: bold; font-size: 1.2rem; color: var(--secondary-color); margin-top: 30px;">
I assure you that you'll become master of Java 8 until Java 21 after attending the workshop.
</p>
<section class="outcomes">
<h3>What you’ll learn:</h3>
<ul>
<li>✅ You'll master Java 8 until Java 21</li>
<li>✅ You'll have hands on experience from Java 8 to 21 in this one day workshop</li>
<li>✅ You can easily crack modern interviews with this knowledge</li>
<li>✅ Loaded with this knowledge you can perform well in your work with updated knowledge on Java</li>
<li>✅ You can crack tier-1 companies interviews</li>
</ul>
</section>
<section class="requirements">
<h3>Are there any course requirements or prerequisites?</h3>
<p><strong>You should know Core Java. If you don't know Core Java, this course is not for you.</strong></p>
</section>
<section class="who-for">
<h3>Who this course is for:</h3>
<p>This course is for people who have <strong>good understanding on core Java</strong>. If you want to impress your colleagues or your boss with your latest Java knowledge this is the course for you. You'll make amazing pull requests after arming knowledge from Java 8 to 21.</p>
</section>
<section class="feedback-section">
<p>I took this workshop in many companies and students from countries like,</p>
<ul>
<li>* Spain</li>
<li>* US</li>
<li>* Mexico</li>
<li>* India</li>
</ul>
<p>and have received wonderful feedback from trainees, This workshop received various feedbacks from trainees all around the world and I personally sculpted this workshop and refined it in last 9 years.</p>
<p><strong>And you will definitely have fun doing the hands-on. Hands-on is totally based on whatever I have taught you, so you'll thoroughly enjoy it.</strong></p>
</section>
<section style="margin: 20px 0;">
<p>Workshop will be conducted in <strong>one of the coming 4 Sundays (10AM to 7PM) </strong>.</p>
<p>I don't want to add too many people in the session, so that it will be easy for the students to clarify their doubts.</p>
<p><strong>Max people per session would be 50, first come first serve basis.</strong> After you register for the course, I will send an invite for 1 Sunday in the coming 4 weeks, if you are not flexible with the date, I will postpone until you are ready.</p>
</section>
<section style="background: #eee; padding: 20px; border-radius: 8px;">
<p>There is a udemy course I published years ago and thousands of students participated and gave great reviews, check out those reviews, here is the link for udemy course,</p>
<a href="https://www.udemy.com/course/advanced-one-day-java-workshop-from-java-8-to-17" class="udemy-link">https://www.udemy.com/course/advanced-one-day-java-workshop-from-java-8-to-17</a>
<p>The reason for taking online session apart from Udemy is to clarify all your doubts. <strong>If you take up this course, I will also share a Udemy FREE coupon for my course so you can have the course life long.</strong></p>
</section>
<section class="pricing-section">
<span class="old-price">Original Price: <del>15,999</del></span>
<span class="new-price">Discounted Price: <strong>999</strong></span>
<a href="https://forms.gle/Ss7kvhVy1bSLmDvT9" class="register-btn">REGISTER NOW</a>
</section>
</div>
</body>
</html>