Tutorial

How to Easily Add Contact Form in Blogger [2022]

Rate this post
Contact form is important for visitors to send messages directly to blog admin. Blogger has its own contact form widget. But currently, this widget is not working. So there is no other option but to use third-party services.
How to Easily Add Contact Form in Blogger
How to Easily Add Contact Form in Blogger
Let’s see how to add a contact form to blogger.

How to Add Contact Form

Step 1: Go to the Blogger dashboard. Then click on Pages > New Page

How to Easily Add Contact Form in Blogger

Step 2: Now switch the post editor from “Compose View” to “HTML View”.

Step 3: Paste the below code and change [email protected] to your actual email address. then save and publish the page.
[<div class=”container”>
  <form target=”_blank” action=”https://formsubmit.co/[email protected]” method=”POST”>
    <div class=”form-group”>
      <div class=”form-row”>
        <div class=”col”>
          <input type=”text” name=”name” class=”form-control” placeholder=”Full Name” required>
        </div>
        <div class=”col”>
          <input type=”email” name=”email” class=”form-control” placeholder=”Email Address” required>
        </div>
      </div>
    </div>
    <div class=”form-group”>
      <textarea placeholder=”Your Message” class=”form-control” name=”message” rows=”10″ required></textarea>
    </div>
    <button type=”submit” class=”btn btn-lg btn-dark btn-block”>Submit Form</button>
  </form>
</div>
<link rel=”stylesheet” href=”https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css”>]

A test message should be sent to verify the email address once the page is published. Once the test message has been sent, go to the inbox and verify the email by clicking on the verify link.

You can use this contact form in many ways. For example, you can use contact us, guest post, service, etc.

Hope you have successfully added the contact form to blogger. Comment for any problem or help

Rimon

This is RIMON Proud owner of this blog. An employee by profession but proud to introduce myself as a blogger. I like to write on the blog. Moreover, I've a lot of interest in web design. I want to see myself as a successful blogger and SEO expert.

মন্তব্য করুন

Related Articles

Back to top button