forked from DGTech1/dgtech1.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtraining.html
More file actions
28 lines (27 loc) · 741 Bytes
/
training.html
File metadata and controls
28 lines (27 loc) · 741 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>DevOps Training Programs | DGTech</title>
<meta name="description" content="DevOps training for students and professionals covering Linux, Docker, Kubernetes, AWS and CI/CD." />
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<h1>DevOps Training Programs</h1>
<p>Job-oriented DevOps training with real-world projects.</p>
<ul>
<li>Linux & Git</li>
<li>Docker & Kubernetes</li>
<li>AWS DevOps</li>
<li>CI/CD using Jenkins & GitHub Actions</li>
</ul>
<div id="footer"></div>
<script>
fetch("/footer.html")
.then(response => response.text())
.then(data => {
document.getElementById("footer").innerHTML = data;
});
</script>
</body>
</html>