-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathblog.html
More file actions
32 lines (25 loc) · 936 Bytes
/
Copy pathblog.html
File metadata and controls
32 lines (25 loc) · 936 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
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>DevOps Blog | DGTech Consultancy</title>
<meta name="description" content="DevOps tutorials, career guides and cloud learning resources." />
</head>
<body>
<h1>DevOps Learning Resources</body></h1>
<h2>What is DevOps? A Complete Guide for Beginners</h2>
<p>DevOps is a combination of development and operations that focuses on faster delivery, automation and collaboration.</p>
<h2>Top DevOps Tools You Must Learn in 2025</h2>
<p>Docker, Kubernetes, Jenkins, GitHub Actions, Terraform and AWS are must-have DevOps skills.</p>
<h2>How Students Can Start a Career in DevOps</h2>
<p>Learn Linux, cloud basics, CI/CD and work on real-world DevOps projects.</p>
<div id="footer"></div>
<script>
fetch("/footer.html")
.then(response => response.text())
.then(data => {
document.getElementById("footer").innerHTML = data;
});
</script>
</body>
</html>