-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
26 lines (25 loc) · 858 Bytes
/
contact.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<style>
body {
margin: 0; /* Remove default margin */
overflow: hidden; /* Prevent any scrollbars */
}
iframe {
width: 100%;
height: 100vh; /* Set the iframe to full viewport height */
border: none; /* Remove iframe border */
}
</style>
<!-- Add your CSS stylesheets here if needed -->
</head>
<body>
<!-- Embed the Google Form here -->
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSdbMg3CR4Djs5RmsaroKDH3Kvo2jX05m31ejujZWhpw2VJL-g/viewform?embedded=true"></iframe>
<!-- You can add additional content or styling for your contact page here -->
</body>
</html>