-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path1
More file actions
29 lines (27 loc) · 937 Bytes
/
1
File metadata and controls
29 lines (27 loc) · 937 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
<html>
<body>
<h1>Privacy Policy</h1>
<p>DGTech Consultancy respects your privacy.</p>
<p>Contact form data is used only to respond to inquiries.</p>
<p>No data is sold or shared.</p>
<p>Email: info@dgtechconsultancy.com</p>
<div id="footer"></div>
<script>
fetch("/footer.html")
.then(response => response.text())
.then(data => {
document.getElementById("footer").innerHTML = data;
});
</script>
</body>
<!-- ================= FOOTER ================= -->
<footer>
<p>© 2025 DGTech Consultancy Private Limited</p>
<p>
<a href="https://www.dgtechconsultancy.com" style="color:#ccc;">Home </a> |
<a href="/privacy.html" style="color:#ccc;" target="_blank" rel="noopener noreferrer">Privacy Policy </a> |
<a href="/terms.html" style="color:#ccc;" target="_blank" rel="noopener noreferrer">Terms </a> |
<a href="contact.html" target="_blank" rel="noopener noreferrer">Contact Us</a>
</p>
</footer>
</html>