-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorials.html
More file actions
562 lines (480 loc) · 23.1 KB
/
Copy pathtutorials.html
File metadata and controls
562 lines (480 loc) · 23.1 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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
<!DOCTYPE html>
<html>
<head runat="server">
<title>Tutorials</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="../images/logo/favicon.png" type="image/png">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,900,900i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="fonts/icomoon/style.css">
<link rel="stylesheet" href="fonts/brand/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="css/jquery.fancybox.min.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/aos.css">
<link href="css/slider.css" rel="stylesheet" />
<link href="css/extra.css" rel="stylesheet" />
<link href="css/font-awesome.min.css" rel="stylesheet" />
<link href="css/bootstrap/font-awesome.min.css" rel="stylesheet" />
<link href="css/side-nav.css" rel="stylesheet" />
<link href="css/bact-to-top.css" rel="stylesheet" />
<link href="css/scroll.css" rel="stylesheet" />
<link href="css/pop-up.css" rel="stylesheet" />
<!-- MAIN CSS -->
<link rel="stylesheet" href="css/style.css">
<style type="text/css">
.act {
font-size: 18px;
}
.act:hover {
font-weight: bold;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.list-wrapper {
position:relative;
}
.list-item-wrapper {
margin-top:10px;
position:relative;
}
.list-bullet {
margin-top:5px;
margin-left:10px;
float:left;
margin-right:20px;
background:#0779e4;
height:10px;
width:10px;
line-height:20px;
border-radius:100px;
font-weight:700;
color:white;
text-align:center;
}
.list-item {
display:table-row;
vertical-align:middle;
}
.list-title {
font-weight:700;
}
.list-text {
font-weight:400;
}
.blue-line {
top:10px;
background:#0779e4;
z-index:1;
width:1.5px;
height:100%;
position:absolute;
margin-left:14.5px;
}
.white-line {
background:#e6f3fe;
z-index:1;
top:15px;
width:1.5px;
height:100%;
position:absolute;
margin-left:14.5px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div class="site-wrap" id="home-section">
<div class="site-mobile-menu site-navbar-target">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close mt-3">
<span class="icon-close2 js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div>
<header class="site-navbar light site-navbar-target" role="banner" id="myHeader">
<div class="container">
<div class="row align-items-center position-relative">
<div class="col-3">
<div class="site-logo">
<a href="index.html"><strong>WeTeach<span style="color:#0779E4;">IT</span></strong></a>
</div>
</div>
<div class="col-9 text-right">
<span class="d-inline-block d-lg-none"><a href="#" class=" site-menu-toggle js-menu-toggle py-5 "><span class="icon-menu h3 text-black"></span></a></span>
<nav class="site-navigation text-right ml-auto d-none d-lg-block" role="navigation" id="nav">
<ul class="site-menu main-menu js-clone-nav ml-auto ">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="about.html" class="nav-link">About</a></li>
<li><a href="tutorials.html" class="nav-link">Tutorials</a></li>
<li><a href="color-picker.html" class="nav-link">Color Picker</a></li>
<li><a href="contact.html" class="nav-link">Contact</a></li>
<li> </li>
<li><a href="login.html" style="font-weight:bold;" class="nav-link">LOGIN</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div>
<a id="btn-btt" ></a>
<div id="start" class="site-section-cover overlay" style="background-image: url('images/hero_bg.jpg');">
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-lg-10 text-center">
<h1>Our <strong>Tutorials</strong></h1>
</div>
</div>
</div>
</div>
<div class="site-section bg-light">
<div class="container">
<div class="row">
<div class="col">
<div class="heading mb-4">
<span class="caption">Tutorial Course</span>
<h2>Java Programming</h2>
</div>
</div>
</div>
<div class="row">
<div class="tutorial-item mb-4">
<h3 style="font-family:Arial, Helvetica, sans-serif">Tutorial <span style="font-weight:bold;">Details</span></h3>
<p></p>
<span class="d-block">Java is a high-level programming language developed by Sun Microsystems. It was originally designed for developing programs for set-top boxes and handheld devices, but later became a popular choice for creating web applications.</span><br />
<p></p>
<div style="border:1px solid #0779e4;">
<div style="padding:10px 10px 10px 20px; background-color:#e6f3fe;">
<div class="list-wrapper">
<div class="blue-line"></div>
<div class="list-item-wrapper">
<div class="list-bullet"></div>
<div class="list-item">
<div class="list-title">Welcome for Java Tutorial</div>
<div class="list-text">Get started with the Full Java Programming Tutorial and explore everything about the tutorial.</div>
</div>
</div>
<br />
<div class="list-item-wrapper">
<div class="list-bullet"></div>
<div class="list-item">
<div class="list-title">Phase-1: Getting started with JAVA and loops</div>
<div class="list-text">Learn basics of Java programming with tutorials on executing the loops.</div>
</div>
</div>
<br />
<div class="list-item-wrapper">
<div class="list-bullet"></div>
<div class="list-item">
<div class="list-title">Phase-2: Learning about Methods and parameters</div>
<div class="list-text">Performing task/actions using methods and passing data i.e. parameters into a method.</div>
</div>
</div>
<br />
<div class="list-item-wrapper">
<div class="list-bullet"></div>
<div class="list-item">
<div class="list-title">Phase-3: Implement OOPS using JAVA</div>
<div class="list-text">Implementing Java OOps Concept, (OOps - Object-Oriented Programming), by creating objects that contain both data and methods.</div>
</div>
</div>
<br />
<div class="list-item-wrapper">
<div class="list-bullet"></div>
<div class="list-item">
<div class="list-title">Phase-4: Playing with Java - File Class</div>
<div class="list-text">Creating, Searching, Deleting, Reading of files and directories which is refered as File handling in Java.</div>
</div>
</div>
<br />
<div class="list-item-wrapper">
<div class="list-bullet"></div>
<div class="list-item">
<div class="list-title">Phase-5: Testing skills with Exercises & Test</div>
<div class="list-text">Testing and Improving skills with topic-to-topic Exercises followed by appearing for a Test at the end of Tutorial.</div>
</div>
</div>
<br />
<div class="list-item-wrapper">
<div class="list-bullet"></div>
<div class="list-item">
<div class="list-title">Full Stack Java Programming Project</div>
<div class="list-text">Ending the tutorial by creating a Full Stack Java Programming Project which will provide you with hands-on working experience, the objective being to develop the entire project/application from scratch and deploy it into a pseudo-production environment.</div>
</div>
<p></p>
<div class="white-line"></div>
</div>
</div>
</div>
</div>
<br />
<hr />
<br />
<div>
<div class="heading mb-4">
<h2>Following are the notable features of Java:</h2>
</div>
<br />
<h5 style="font-weight:bold;">Object Oriented</h5>
<p>In Java, everything is an Object. Java can be easily extended since it is based on the Object model.</p>
<h5 style="font-weight:bold;">Platform Independent</h5>
<p>Unlike many other programming languages including C and C++, when Java is compiled, it is not compiled into platform specific machine, rather into platform-independent byte code. This byte code is distributed over the web and interpreted by the Virtual Machine (JVM) on whichever platform it is being run on.</p>
<h5 style="font-weight:bold;">Simple</h5>
<p>Java is designed to be easy to learn. If you understand the basic concept of OOP Java, it would be easy to master.</p>
<h5 style="font-weight:bold;">Secure</h5>
<p>With Java's secure feature it enables to develop virus-free, tamper-free systems. Authentication techniques are based on public-key encryption.</p>
<h5 style="font-weight:bold;">Architecture-neutral</h5>
<p>Java compiler generates an architecture-neutral object file format, which makes the compiled code executable on many processors, with the presence of Java runtime system.</p>
<h5 style="font-weight:bold;">Portable</h5>
<p>Being architecture-neutral and having no implementation dependent aspects of the specification makes Java portable. The compiler in Java is written in ANSI C with a clean portability boundary, which is a POSIX subset.</p>
<h5 style="font-weight:bold;">Robust</h5>
<p>Java makes an effort to eliminate error-prone situations by emphasizing mainly on compile time error checking and runtime checking.</p>
<h5 style="font-weight:bold;">Multithreaded</h5>
<p>With Java's multithreaded feature it is possible to write programs that can perform many tasks simultaneously. This design feature allows the developers to construct interactive applications that can run smoothly.</p>
<h5 style="font-weight:bold;">Interpreted</h5>
<p>Java byte code is translated on the fly to native machine instructions and is not stored anywhere. The development process is more rapid and analytical since the linking is an incremental and light-weight process.</p>
<h5 style="font-weight:bold;">High Performance</h5>
<p>With the use of Just-In-Time compilers, Java enables high performance.</p>
<h5 style="font-weight:bold;">Distributed</h5>
<p>Java is designed for the distributed environment of the internet.</p>
<h5 style="font-weight:bold;">Dynamic</h5>
<p>Java is considered to be more dynamic than C or C++ since it is designed to adapt to an evolving environment. Java programs can carry an extensive amount of run-time information that can be used to verify and resolve accesses to objects at run-time.</p>
</div>
<br/>
<hr />
<br />
<div class="heading mb-4">
<h4 style="color:#0779e4;">Why Java Tutorial?</h4>
</div>
<span class="d-block">Java Tutorial covers most of the aspects of Java Programming fom basics to advance level with thoughtfully dividing it in short topic based sections for better understanding and knowladge.</span><br />
<h3 class="d-block">So, what are you waiting for?</h3><span class="d-block">Get started by clicking on the "<span style="font-weight:bold;">Learn Java</span>" button below.</span>
<br />
<input type="button" onclick="location.replace('tutorials/java.html');" class="btn btn-primary px-4" value="Learn Java">
<div style="margin-left:85%;">
<input type="button" id="myBtn" style="background-color:transparent; border-color:#0779E4; color:#0779E4; font-size:18px;" value="Learn More..."/>
</div>
</div>
<br />
</div>
</div>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<br />
<h2><span class="txt-rotate" data-period="2000" data-rotate='[ "Coming Soon..."]'></span></h2>
<h3>HTML, CSS, JavaScript, PHP, SQL, Python, jQuery, C++, C#, React, Node.js, XML, Bootstrap, etc.</h3>
<h5 style="font-weight:bold;">Stay Tuned for future updates...</h5>
</div>
</div>
</div>
<footer class="site-footer" id="myFooter">
<hr />
<br />
<div class="container">
<div class="row align-items-center text-center align-content-center justify-content-center">
<input class="footer-btn" id="Btn" type="button" value="Report Error"/>
<input class="footer-btn" onclick="window.open('color-picker.html')" type="button" value="Color Picker"/>
<input class="footer-btn" id="Btn1" type="button" value="More Info"/>
<input class="footer-btn" onclick="location.replace('privacy-policy.html')" type="button" value="Privacy Policy"/>
<div class="col-3">
<div class="site-logo footer-logo">
<a href="index.html" style="color:black;">WeTeach<span style="color:#0779E4;">IT</span></a>
</div>
</div>
</div>
</div>
<!-- The Modal -->
<div id="Modal" class="mymodal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h2>Report Error</h2>
<h3>If you want to report an error, or if you want to make a suggestion, do not hesitate to send us an e-mail:</h3>
<h4><a href="mailto:help.weteachit@gmail.com">help.weteachit@gmail.com</a></h4>
</div>
</div>
<!-- The Modal1 -->
<div id="Modal1" class="mymodal1">
<!-- Modal content -->
<div class="modal-content">
<span class="close1">×</span>
<h2>Reach out to us</h2>
<h3>For more information on a topic, or other queries, reach out to us by sending us an e-mail:</h3>
<h4><a href="mailto:info.weteachit@gmail.com">info.weteachit@gmail.com</a></h4>
</div>
</div>
<br />
<hr />
<br />
<div class="container">
<div class="row">
<div class="col-lg-3">
<h2 class="footer-heading mb-4">About Us</h2>
<p>WeTeachIT is a java developers site, with tutorials and references on Java language. </p>
<ul class="list-unstyled social">
<li><a href="https://www.facebook.com/WeTeachIT.Tutorial/" target="_blank"><span class="icon-facebook"></span></a></li>
<li><a href="https://www.instagram.com/weteachit/" target="_blank"><span class="icon-instagram"></span></a></li>
<li><a href="https://twitter.com/WeTeachIT1" target="_blank"><span class="icon-twitter"></span></a></li>
<li><a href="https://www.linkedin.com/in/weteachit-tutorials-bb2a9b1b7/" target="_blank"><span class="icon-linkedin"></span></a></li>
</ul>
</div>
<div class="col-lg-8 ml-auto">
<div class="row">
<div class="col-lg-3">
<h2 class="footer-heading mb-4">Quick Links</h2>
<ul class="list-unstyled">
<li><a href="#">About Us</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
<div class="col-lg-3">
<h2 class="footer-heading mb-4">Resources</h2>
<ul class="list-unstyled">
<li><a href="#">About Us</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
<div class="col-lg-3">
<h2 class="footer-heading mb-4">Support</h2>
<ul class="list-unstyled">
<li><a href="#">About Us</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
<div class="col-lg-3">
<h2 class="footer-heading mb-4">Company</h2>
<ul class="list-unstyled">
<li><a href="#">About Us</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="row pt-5 mt-5 text-center">
<div class="col-md-12">
<div class="border-top pt-5">
<p>
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | <a href="index.html" target="_blank" >WeTeachIT</a>
</p>
</div>
</div>
</div>
</div>
</footer>
</div>
</form>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/jquery.animateNumber.min.js"></script>
<script src="js/jquery.fancybox.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/bootstrap-datepicker.min.js"></script>
<script src="js/aos.js"></script>
<script src="js/typewritter-effect.js"></script>
<script src="js/slider.js"></script>
<script src="js/active-nav.js"></script>
<script src="js/hidden-div.js"></script>
<script src="js/side-nav.js"></script>
<script src="js/execute.js"></script>
<script src="js/exercise.js"></script>
<script src="cookies/src/app.js"></script>
<script src="js/pop-up.js"></script>
<script src="js/main.js"></script>
<script>
var btn = $('#btn-btt');
$(window).scroll(function () {
if ($(window).scrollTop() > 725) {
btn.addClass('show');
} else {
btn.removeClass('show');
}
});
btn.on('click', function (e) {
e.preventDefault();
$('html, body').animate({ scrollTop: 0 }, '300');
});
// Get the modal
var modal = document.getElementById("myModal");
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
$(document).ready(function () {
window.location.hash = '';
});
</script>
</body>
</html>