-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata-engineering.html
More file actions
137 lines (129 loc) · 5.57 KB
/
data-engineering.html
File metadata and controls
137 lines (129 loc) · 5.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data Engineering Essentials - ITVersity</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header>
<nav>
<div class="logo">ITVersity</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#services">Services</a></li>
<li><a href="index.html#courses">Courses</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</header>
<section class="course-hero">
<div class="hero-content">
<h1>Data Engineering Essentials</h1>
<p>Master modern data engineering tools and techniques for big data processing</p>
</div>
</section>
<section class="course-details">
<div class="container">
<div class="course-overview">
<h2>Course Overview</h2>
<p>This comprehensive course covers essential data engineering concepts, tools, and best practices. Learn how to build scalable data pipelines, process big data, and implement ETL workflows.</p>
</div>
<div class="course-highlights">
<h2>What You'll Learn</h2>
<ul class="features-list">
<li><i class="fas fa-check"></i> Big Data fundamentals and architecture</li>
<li><i class="fas fa-check"></i> Apache Spark and PySpark</li>
<li><i class="fas fa-check"></i> Data warehousing concepts</li>
<li><i class="fas fa-check"></i> ETL pipeline development</li>
<li><i class="fas fa-check"></i> Data modeling and optimization</li>
<li><i class="fas fa-check"></i> SQL and NoSQL databases</li>
<li><i class="fas fa-check"></i> Data quality and testing</li>
<li><i class="fas fa-check"></i> Cloud platforms (AWS, Azure)</li>
</ul>
</div>
<div class="course-structure">
<h2>Course Structure</h2>
<div class="timeline">
<div class="timeline-item">
<h3>Week 1-2</h3>
<p>Data Engineering Fundamentals</p>
</div>
<div class="timeline-item">
<h3>Week 3-4</h3>
<p>Big Data Processing with Spark</p>
</div>
<div class="timeline-item">
<h3>Week 5-6</h3>
<p>Data Warehousing and ETL</p>
</div>
<div class="timeline-item">
<h3>Week 7-8</h3>
<p>Cloud Platforms and Projects</p>
</div>
</div>
</div>
<div class="course-features">
<h2>Course Features</h2>
<div class="features-grid">
<div class="feature-card">
<i class="fas fa-video"></i>
<h3>60+ Hours of Content</h3>
<p>In-depth video lessons</p>
</div>
<div class="feature-card">
<i class="fas fa-project-diagram"></i>
<h3>Real Projects</h3>
<p>Industry-based projects</p>
</div>
<div class="feature-card">
<i class="fas fa-certificate"></i>
<h3>Certification</h3>
<p>Industry-recognized certificate</p>
</div>
<div class="feature-card">
<i class="fas fa-users"></i>
<h3>Expert Support</h3>
<p>Industry expert mentoring</p>
</div>
</div>
</div>
<div class="enrollment-cta">
<h2>Ready to Become a Data Engineer?</h2>
<p>Start your journey towards becoming a professional data engineer</p>
<a href="index.html#contact" class="cta-button">Enroll Now</a>
</div>
</div>
</section>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>ITVersity, Inc</h3>
<p>Empowering careers through education</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#courses">Courses</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect With Us</h3>
<div class="social-links">
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 ITVersity, Inc. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>