-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjava.html
More file actions
84 lines (76 loc) · 2.66 KB
/
Copy pathjava.html
File metadata and controls
84 lines (76 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Java</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 > <img src="images\java logo2.webp" alt="java logo" width="70px">Java Programming</h1>
<header>
<nav>
<a href="Home.html">Home</a> |
<a href="java.html">Java</a> |
<a href="python.html">Python</a> |
<a href="resources.html">Resources</a> |
<a href="courses.html">Courses</a>
</nav>
</header>
<section class="java_intro">
<p >Java is a popular, object-oriented programming language used for web, desktop, and mobile applications.</p>
</section >
<section class= " jav_bas">
<h2>Java Basics</h2>
<ul>
<li>
Variables & Data Types -
<a href="https://www.w3schools.com/java/java_variables.asp" target="_blank">Learn more</a>
</li>
<li>
Operators -
<a href="https://www.w3schools.com/java/java_operators.asp" target="_blank">Learn more</a>
</li>
<li>
Control Flow (if, loops, switch) -
<a href="https://www.w3schools.com/java/java_conditions.asp" target="_blank">Learn more</a>
</li>
<li>
Object-Oriented Programming (classes, objects, inheritance) -
<a href="https://www.w3schools.com/java/java_classes.asp" target="_blank">Learn more</a>
</li>
</ul>
</section>
<section class="adv_java">
<h2>Advanced Java</h2>
<ul>
<li>
Exception Handling -
<a href="https://www.w3schools.com/java/java_try_catch.asp" target="_blank">Learn more</a>
</li>
<li>
File I/O -
<a href="https://www.w3schools.com/java/java_files.asp" target="_blank">Learn more</a>
</li>
<li>
Java Libraries & APIs -
<a href="https://www.w3schools.com/java/java_reflection.asp" target="_blank">Learn more</a>
</li>
<li>
Multithreading & Concurrency -
<a href="https://www.w3schools.com/java/java_threads.asp" target="_blank">Learn more</a>
</li>
</ul>
</section>
<section class="video">
<video controls width="400">
<source src="videos/java_intro.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</section>
<footer>
<h6>© 2025 Java Course</h6>
</footer>
</body>
</html>