-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
80 lines (71 loc) · 2.2 KB
/
Copy pathcourses.html
File metadata and controls
80 lines (71 loc) · 2.2 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
---
layout: default
title: "Courses & Training"
permalink: /courses/
---
<section id="courses" style="padding: 60px 20px; background-color: #1f1f1f; color: #f0f0f0;">
<div class="container" style="max-width: 1100px; margin: auto;">
<h1 style="text-align: center; color: #4CAF50;">Courses & Training</h1>
<p style="text-align: center; max-width: 800px; margin: auto; font-size: 1.1rem; color: #ccc;">
Explore hands-on, project-based training in data science, analytics, and modern tools — designed for BSc-level learners and professionals.
</p>
<div class="course-grid">
<div class="course-card">
<h3>Power BI Fundamentals</h3>
<p>Data visualization, dashboards, and real-time reporting.</p>
<span>Level: Beginner</span>
</div>
<div class="course-card">
<h3>Tableau Mastery</h3>
<p>From basic charts to dynamic, interactive visualizations.</p>
<span>Level: Intermediate</span>
</div>
<div class="course-card">
<h3>Machine Learning with Python</h3>
<p>Supervised and unsupervised models, pipelines, and evaluation techniques.</p>
<span>Level: Intermediate–Advanced</span>
</div>
<div class="course-card">
<h3>SQL for Data Science</h3>
<p>Master SELECT statements, JOINs, subqueries, and analytical functions.</p>
<span>Level: Beginner–Intermediate</span>
</div>
<div class="course-card">
<h3>Web Development for Data Tools</h3>
<p>HTML, CSS, and JavaScript foundations to build interactive data platforms.</p>
<span>Level: Beginner</span>
</div>
</div>
</div>
</section>
<style>
.course-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
margin-top: 40px;
}
.course-card {
background-color: #2c2c2c;
border-radius: 10px;
padding: 20px;
box-shadow: 0 2px 10px rgba(0,0,0,0.3);
transition: transform 0.3s;
}
.course-card:hover {
transform: translateY(-5px);
}
.course-card h3 {
color: #00BFFF;
margin-bottom: 10px;
}
.course-card p {
font-size: 0.95rem;
color: #ccc;
margin-bottom: 8px;
}
.course-card span {
font-size: 0.85rem;
color: #aaa;
}
</style>