-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
370 lines (335 loc) · 13.8 KB
/
Copy pathcourses.html
File metadata and controls
370 lines (335 loc) · 13.8 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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Courses Catalog - AI Training Hub</title>
<meta name="description" content="Comprehensive AI and Agentic AI courses catalog">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/ai-training.css">
<style>
body {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
min-height: 100vh;
}
.catalog-container {
max-width: 1200px;
margin: 8rem auto;
padding: 2rem;
}
.page-header {
text-align: center;
margin-bottom: 5rem;
}
.page-header h1 {
color: #333;
font-size: 4rem;
margin-bottom: 1rem;
}
.course-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
margin-bottom: 5rem;
}
.course-card {
background: white;
border-radius: 1rem;
padding: 3rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
}
.course-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.course-icon {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 2rem;
font-size: 2rem;
color: white;
}
.course-title {
font-size: 2.2rem;
color: #333;
margin-bottom: 1rem;
font-weight: 700;
}
.course-description {
color: #666;
line-height: 1.6;
margin-bottom: 2rem;
}
.course-meta {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 2rem;
}
.meta-item {
padding: 0.5rem 1rem;
background: #f8f9fa;
border-radius: 2rem;
font-size: 1.2rem;
font-weight: 500;
}
.course-price {
font-size: 2.5rem;
font-weight: 700;
color: #39b54a;
margin-bottom: 2rem;
}
.course-features {
list-style: none;
padding: 0;
margin-bottom: 3rem;
}
.course-features li {
padding: 0.5rem 0;
color: #555;
}
.course-features li:before {
content: "✓";
color: #39b54a;
font-weight: 700;
margin-right: 1rem;
}
.enroll-btn {
background: linear-gradient(135deg, #39b54a 0%, #2d8a3c 100%);
color: white;
padding: 1.2rem 2rem;
border: none;
border-radius: 0.5rem;
font-size: 1.4rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
text-decoration: none;
text-align: center;
display: block;
}
.enroll-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(57, 181, 74, 0.4);
background: linear-gradient(135deg, #2d8a3c 0%, #1f5f29 100%);
}
.level-badge {
position: absolute;
top: 1rem;
right: 1rem;
padding: 0.5rem 1rem;
border-radius: 2rem;
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
}
.level-beginner {
background: #28a745;
color: white;
}
.level-intermediate {
background: #ffc107;
color: #333;
}
.level-advanced {
background: #dc3545;
color: white;
}
.back-link {
text-align: center;
margin-top: 3rem;
}
.back-link a {
color: #39b54a;
text-decoration: none;
font-size: 1.6rem;
font-weight: 600;
}
</style>
</head>
<body>
<div class="catalog-container">
<div class="page-header">
<h1>AI Training Courses</h1>
<p>Master AI, Machine Learning, and Agentic AI with our comprehensive training programs</p>
</div>
<div class="course-grid">
<!-- AI Fundamentals -->
<div class="course-card">
<div class="level-badge level-beginner">Beginner</div>
<div class="course-icon" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
🧠
</div>
<h3 class="course-title">AI Fundamentals</h3>
<p class="course-description">
Master the core concepts of Artificial Intelligence, including neural networks, deep learning, and modern AI architectures. Perfect for beginners and professionals transitioning to AI.
</p>
<div class="course-meta">
<span class="meta-item">8 Weeks</span>
<span class="meta-item">Online</span>
<span class="meta-item">Certificate</span>
</div>
<div class="course-price">$599</div>
<ul class="course-features">
<li>Introduction to AI and Machine Learning</li>
<li>Neural Networks and Deep Learning</li>
<li>Hands-on Projects with Python</li>
<li>Industry Case Studies</li>
<li>Career Guidance and Mentorship</li>
</ul>
<a href="register.html?course=ai-fundamentals" class="enroll-btn">Enroll Now</a>
</div>
<!-- Advanced Machine Learning -->
<div class="course-card">
<div class="level-badge level-intermediate">Intermediate</div>
<div class="course-icon" style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);">
⚙️
</div>
<h3 class="course-title">Advanced Machine Learning</h3>
<p class="course-description">
Deep dive into advanced ML algorithms, ensemble methods, reinforcement learning, and MLOps practices for production deployment.
</p>
<div class="course-meta">
<span class="meta-item">10 Weeks</span>
<span class="meta-item">Online</span>
<span class="meta-item">Advanced Certificate</span>
</div>
<div class="course-price">$799</div>
<ul class="course-features">
<li>Advanced Algorithms & Optimization</li>
<li>Ensemble Methods & Model Selection</li>
<li>Reinforcement Learning</li>
<li>MLOps and Production Deployment</li>
<li>Capstone Project</li>
</ul>
<a href="register.html?course=advanced-ml" class="enroll-btn">Enroll Now</a>
</div>
<!-- Agentic AI Workflows -->
<div class="course-card">
<div class="level-badge level-advanced">Advanced</div>
<div class="course-icon" style="background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);">
🤖
</div>
<h3 class="course-title">Agentic AI Workflows</h3>
<p class="course-description">
Learn to build autonomous AI agents, multi-agent systems, and agentic workflows using cutting-edge frameworks and tools.
</p>
<div class="course-meta">
<span class="meta-item">12 Weeks</span>
<span class="meta-item">Online + Lab</span>
<span class="meta-item">Expert Certificate</span>
</div>
<div class="course-price">$999</div>
<ul class="course-features">
<li>Agent Architecture & Design Patterns</li>
<li>Multi-Agent Systems</li>
<li>Tool Integration & API Usage</li>
<li>Workflow Orchestration</li>
<li>Real-world Agent Development</li>
</ul>
<a href="register.html?course=agentic-ai" class="enroll-btn">Enroll Now</a>
</div>
<!-- Natural Language Processing -->
<div class="course-card">
<div class="level-badge level-intermediate">Intermediate</div>
<div class="course-icon" style="background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);">
💬
</div>
<h3 class="course-title">Natural Language Processing</h3>
<p class="course-description">
Comprehensive NLP training covering transformers, LLMs, prompt engineering, and building conversational AI systems.
</p>
<div class="course-meta">
<span class="meta-item">9 Weeks</span>
<span class="meta-item">Online</span>
<span class="meta-item">Specialist Certificate</span>
</div>
<div class="course-price">$749</div>
<ul class="course-features">
<li>Text Processing & Feature Engineering</li>
<li>Transformer Architecture & LLMs</li>
<li>Prompt Engineering & Fine-tuning</li>
<li>Conversational AI Development</li>
<li>NLP Production Systems</li>
</ul>
<a href="register.html?course=nlp" class="enroll-btn">Enroll Now</a>
</div>
<!-- Computer Vision -->
<div class="course-card">
<div class="level-badge level-intermediate">Intermediate</div>
<div class="course-icon" style="background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);">
👁️
</div>
<h3 class="course-title">Computer Vision</h3>
<p class="course-description">
Master image processing, object detection, image segmentation, and modern computer vision architectures using PyTorch and TensorFlow.
</p>
<div class="course-meta">
<span class="meta-item">10 Weeks</span>
<span class="meta-item">Online</span>
<span class="meta-item">Specialist Certificate</span>
</div>
<div class="course-price">$799</div>
<ul class="course-features">
<li>Image Processing Fundamentals</li>
<li>Convolutional Neural Networks</li>
<li>Object Detection & Segmentation</li>
<li>Advanced CV Architectures</li>
<li>Computer Vision Applications</li>
</ul>
<a href="register.html?course=computer-vision" class="enroll-btn">Enroll Now</a>
</div>
<!-- AI Ethics & Governance -->
<div class="course-card">
<div class="level-badge level-beginner">All Levels</div>
<div class="course-icon" style="background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);">
🛡️
</div>
<h3 class="course-title">AI Ethics & Governance</h3>
<p class="course-description">
Learn responsible AI development, bias detection and mitigation, AI governance frameworks, and ethical considerations in AI deployment.
</p>
<div class="course-meta">
<span class="meta-item">6 Weeks</span>
<span class="meta-item">Online</span>
<span class="meta-item">Ethics Certificate</span>
</div>
<div class="course-price">$449</div>
<ul class="course-features">
<li>AI Ethics Principles</li>
<li>Bias Detection & Mitigation</li>
<li>Responsible AI Frameworks</li>
<li>Governance & Compliance</li>
<li>Case Studies & Best Practices</li>
</ul>
<a href="register.html?course=ai-ethics" class="enroll-btn">Enroll Now</a>
</div>
</div>
<div class="back-link">
<a href="index.html">← Back to Home</a>
</div>
</div>
<script>
// Add smooth animations
const cards = document.querySelectorAll('.course-card');
cards.forEach((card, index) => {
card.style.opacity = '0';
card.style.transform = 'translateY(30px)';
setTimeout(() => {
card.style.transition = 'all 0.6s ease';
card.style.opacity = '1';
card.style.transform = 'translateY(0)';
}, index * 100);
});
</script>
</body>
</html>