- Make a Google form having exactly the same fields as on your website.
- Once you do this , generate a link of the prefilled form , you will get the option by clicking onn the 3 dots
- The Generated URL may look somewhat like this
<!--
https://docs.google.com/forms/d/e/1FAIpQLSfim3RiM1NLrTszkwOv2uJ8mFMfZR6WZU-qKK6oRUlgA9vjuw/viewform?usp=pp_url&entry.389706550=Karma&entry.1867581834=Bitch&entry.973008035=Hellllllllooooo
-->
-
- The URL part
1FAIpQLSfim3RiM1NLrTszkwOv2uJ8mFMfZR6WZU-qKK6oRUlgA9vjuw
is your unique form ID. - The part
entry.389706550=Karma
is the name of your field you created in Google Form, this will be used in the HTML form and the part=Karma
this is the text you filled in the field while getting a pre-filled link, this will be doing the trick in HMTL form , See Point 5. - As you can see I have 3 fields in my Google Form :
entry.389706550=Karma
,entry.1867581834=Bitch
andentry.973008035=Hellllllllooooo
- The URL part
-
Make the HTML form in the following format
<form name="gform" id="myform" enctype="text/plain" action="https://docs.google.com/forms/d/e/1FAIpQLSfim3RiM1NLrTszkwOv2uJ8mFMfZR6WZU-qKK6oRUlgA9vjuw/formResponse?" target="hidden_iframe" onsubmit="submitted=true;">
<input type="text" name="entry.389706550" id="entry.389706550" placeholder="First Name" />
<input type="text" name="entry.1867581834" id="entry.1867581834" placeholder="Last Name" />
<textarea name="entry.973008035" id="entry.973008035" placeholder="Message" rows="4"></textarea>
<input type="submit" class="button" value="Send Feedback">
</form>
- This will do the job but after clicking the
Send Feednback
button the website will be redirected to Google Forms. to Prevent this add the following line of code
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;"></iframe>