-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResources.html
More file actions
87 lines (87 loc) · 1.96 KB
/
Copy pathResources.html
File metadata and controls
87 lines (87 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resources - Programming Learning System</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 20px;
text-align: center;
}
.container {
max-width: 700px;
margin: auto;
background: white;
padding: 20px;
border-radius: 15px;
box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}
h1 {
color: #A389D4;
margin-bottom: 10px;
}
h2 {
color: #A389D4;
margin-top: 20px;
}
a {
display: block;
margin: 8px 0;
color: #A389D4;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
button {
margin-top: 20px;
padding: 10px 20px;
background-color: #A389D4;
color: white;
border: none;
border-radius: 10px;
cursor: pointer;
}
button:hover {
background-color: #8e74c1;
}
</style>
</head>
<body>
<div class="container">
<h1>Learning Resources</h1>
<p>Explore additional materials to improve your programming skills.</p>
<!-- Python Resources -->
<h2>🐍 Python</h2>
<a href="https://www.youtube.com/watch?v=rfscVS0vtbw" target="_blank">
Python Full Course for Beginners
</a>
<a href="https://www.w3schools.com/python/" target="_blank">
W3Schools Python Tutorial
</a>
<a href="https://www.python.org/doc/" target="_blank">
Python Official Documentation
</a>
<!-- Java Resources -->
<h2>☕ Java</h2>
<a href="https://www.youtube.com/watch?v=grEKMHGYyns" target="_blank">
Java Full Course for Beginners
</a>
<a href="https://www.w3schools.com/java/" target="_blank">
W3Schools Java Tutorial
</a>
<a href="https://docs.oracle.com/en/java/" target="_blank">
Official Java Documentation
</a>
<!-- Back Button -->
<button onclick="window.location.href='dashboard.html'">
Back to Dashboard
</button>
</div>
</body>
</html>