-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathservices.html
More file actions
29 lines (28 loc) · 861 Bytes
/
services.html
File metadata and controls
29 lines (28 loc) · 861 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>DevOps Consultancy Services | DGTech</title>
<meta name="description" content="Professional DevOps consultancy services including CI/CD, Kubernetes, AWS, DevSecOps and automation." />
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<h1>DevOps Consultancy Services</h1>
<p>We help organizations design, implement and scale DevOps practices.</p>
<ul>
<li>CI/CD Pipeline Design & Automation</li>
<li>Kubernetes & Container Orchestration</li>
<li>Cloud Architecture (AWS, Azure, GCP)</li>
<li>Infrastructure as Code (Terraform)</li>
<li>DevSecOps Implementation</li>
</ul>
<div id="footer"></div>
<script>
fetch("/footer.html")
.then(response => response.text())
.then(data => {
document.getElementById("footer").innerHTML = data;
});
</script>
</body>
</html>