-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
112 lines (105 loc) · 3.68 KB
/
courses.html
File metadata and controls
112 lines (105 loc) · 3.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beneficial Courses for Your Future</title>
<link rel="stylesheet" href="style.css">
<style>
/* Additional inline styling for demonstration; you can move this to style.css if preferred */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
margin-bottom: 30px;
color: #0A284B; /* Prussian blue */
}
.course {
background-color: #e0f0ff; /* Light blue background */
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.course img {
display: block;
max-width: 100%;
height: auto;
margin: 15px auto;
border-radius: 8px;
box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.course h2 {
margin-top: 0;
color: #0A284B;
}
.course p {
color: #333;
}
.coursera-link {
text-align: center;
margin-top: 30px;
}
.coursera-link a {
color: #1C4E80; /* Light blue link */
text-decoration: none;
font-weight: bold;
}
.coursera-link a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Enhance Your Career with These Courses</h1>
<!-- Project Management -->
<div class="course" id="project-management">
<h2>Project Management</h2>
<p>Learn essential methodologies like Agile and Scrum to efficiently manage projects across various industries.</p>
<img src="images/img4.jpg" alt="Project Management Image">
</div>
<!-- Data Science and Analytics -->
<div class="course" id="data-science">
<h2>Data Science and Analytics</h2>
<p>Develop skills in data analysis, statistical modeling, and machine learning to interpret complex data sets.</p>
<img src="images/img5.jpg" alt="Data Science and Analytics Image">
</div>
<!-- Digital Marketing -->
<div class="course" id="digital-marketing">
<h2>Digital Marketing</h2>
<p>Master online marketing strategies, including SEO, content marketing, and social media campaigns.</p>
<img src="images/img6.jpg" alt="Digital Marketing Image">
</div>
<!-- Cybersecurity -->
<div class="course" id="cybersecurity">
<h2>Cybersecurity</h2>
<p>Understand how to protect systems and networks from digital attacks and ensure data privacy.</p>
<img src="images/img7.jpg" alt="Cybersecurity Image">
</div>
<!-- Artificial Intelligence and Machine Learning -->
<div class="course" id="ai-ml">
<h2>Artificial Intelligence and Machine Learning</h2>
<p>Explore the fundamentals of AI and machine learning to create intelligent systems and applications.</p>
<img src="images/img8.jpg" alt="AI and Machine Learning Image">
</div>
<!-- Communication and Public Speaking -->
<div class="course" id="communication-skills">
<h2>Communication and Public Speaking</h2>
<p>Enhance your ability to convey ideas effectively and confidently in various professional settings.</p>
<img src="images/img9.jpg" alt="Communication and Public Speaking Image">
</div>
<div class="coursera-link">
<p>
For comprehensive courses with certifications, visit
<a href="https://www.coursera.org/courses?query=career" target="_blank">Coursera</a>.
</p>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>