Open In App

How to add Google Forms to your Website

Last Updated : 12 Apr, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

Looking to collect feedback, responses, or data directly from your website visitors? Adding a Google Form to your website can be an excellent way to gather information in a quick and efficient manner. Whether you're running a survey, feedback form, or registration page, integrating Google Forms into your website is a simple process that ensures easy data collection.

In this guide, we will walk you through the steps to add a Google Form to your website using various methods, making it easy for you to integrate and share forms across platforms.

How to embed Google Forms on any Website

Step 1: Create a Google Form that has to be embedded. Learn How to Create and Customize Google Forms and move ahead with the next step.

Step 2: After the form has been created, click on the Send button as shown in the image below.

Step 3: Select the embed option from the available options of sending. This would show an <iframe> link that has to be copied.

Step 3: Add this <iframe> link in the HTML source code of the page where the form has to be embedded. This will automatically display the form and allow it to be filled on the page itself. The example below illustrates how the form has to be embedded.

Example:

HTML
<!DOCTYPE html>
<html>

<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>

    <p>
        How to embed Google Forms 
        on any website?
    </p>


    <!-- Specify the <iframe> given by the
        the Google Forms embed page -->
    <iframe src="Your Copied Form Source" 
        width="550" height="600" 
        frameborder="0" marginheight="0"
        marginwidth="0">
        Loading…
    </iframe>
</body>

</html>

Output:

The output screen will look like this

Conclusion

Integrating a Google Form into your website is a simple yet powerful way to gather information directly from your visitors. Whether you prefer embedding the form or sharing the link, Google Forms provides an easy-to-use solution to enhance your website’s interactivity. By following the steps in this guide, you can quickly set up Google Forms for surveys, registrations, and more, offering a user-friendly experience that’s easy to manage and analyze.


Next Article

Similar Reads