forked from DGTech1/dgtech1.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
97 lines (84 loc) · 3.15 KB
/
contact.html
File metadata and controls
97 lines (84 loc) · 3.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact DGTech Consultancy</title>
<!-- Favicons -->
<link rel="icon" type="image/x-icon" href="/assets/favicon/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png">
<!-- MAIN STYLES -->
<link rel="stylesheet" href="assets/css/style.css">
<meta name="description" content="Contact DGTech Consultancy for DevOps training and consulting services.">
<style>
body { font-family: Arial, sans-serif; }
form { max-width: 400px; margin: auto; }
input, textarea, button {
width: 100%;
padding: 10px;
margin: 10px 0;
}
button {
background: #007bff;
color: #fff;
border: none;
cursor: pointer;
}
/* Footer */
footer {
background: linear-gradient(90deg, #1F4FB2, #163A7A);
padding: 30px 20px;
text-align: center;
color: #E5E7EB;
}
footer a {
color: var(--accent-soft);
text-decoration: none;
}
</style>
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
</head>
<body>
<!-- ================= HEADER ================= -->
<header>
<nav>
<div class="logo">
<strong>DGTech Consultancy</strong>
</div>
<div>
<a href="https://www.dgtechconsultancy.com/#home">Home</a>
<a href="https://www.dgtechconsultancy.com/#services">Services</a>
<a href="https://www.dgtechconsultancy.com/#training">Training</a>
<a href="https://www.dgtechconsultancy.com/#blog">Blog</a>
<a href="https://www.dgtechconsultancy.com/contact.html" target="_blank" rel="noopener noreferrer">Contact</a>
</div>
<div class="logo-container">
<img src="images/dgtechweb.png" alt="DGTech Logo" width="250" height="100" class="main-logo">
</div>
</nav>
</header>
<h2 style="color: #202b96"><center>Contact Us</center></h2>
<form action="https://zkrrxsez9g.execute-api.ap-south-1.amazonaws.com/contact" method="POST">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<input type="hidden" name="_gotcha" style="display:none !important">
<!-- Cloudflare Turnstile -->
<div class="cf-turnstile" data-sitekey="0x4AAAAAACI7o6JPUCzwH18c"></div>
<!-- Redirect after submit -->
<input type="hidden" name="redirect" value="https://dgtech1.github.io/thank-you.html">
<button type="submit">Send Message</button>
</form>
</body>
<!-- ================= FOOTER ================= -->
<footer>
<p>© 2025 DGTech Consultancy Private Limited</p>
<p>
<a href="https://www.dgtechconsultancy.com">Home </a> |
<a href="/privacy.html" target="_blank" rel="noopener noreferrer">Privacy Policy </a> |
<a href="/terms.html" target="_blank" rel="noopener noreferrer">Terms </a> |
<a href="contact.html" target="_blank" rel="noopener noreferrer">Contact Us</a>
</p>
</footer>
</html>