![]() |
| File Upload Image |
This tutorial will walk you through adding a file upload form to your Blogger blog step-by-step.
Whether they're sending you a document, a photo, or a guest article, your readers can quickly and securely contribute items to your site by using a file upload form.
We must employ a Free Third-Party Email Service named "formsubmit" for this. Therefore, to add the file upload form, follow the instructions as demonstrated in the video.
Use the following code to add the form to a new page or to an existing page that has already been opened in HTML view.
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<div class="container">
<form target="_blank" action="https://formsubmit.co/example@gmail.com" method="POST" enctype="multipart/form-data">
<div class="form-group">
<div class="form-row">
<div class="col">
<input type="text" name="First-Name" class="form-control" placeholder="First Name" required>
</div>
<div class="col">
<input type="Name" name="Last-Name" class="form-control" placeholder="Last Name" required>
</div>
</div>
</div>
<div class="form-row">
<div class="col">
<input type="email" name="email" class="form-control" placeholder="Email Address" required>
</div></div><br>
<div class="form-group">
<div class="form-row">
<div class="col">
<input type="file" name="attachment">
</div>
</div>
</div>
<label for="Message" ><b>Message *</b></label>
<div class="form-group">
<textarea placeholder="Message" class="form-control" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn btn-lg btn-dark btn-block">Submit Form</button>
</form>
</div>
Here, you must replace the email address at the top (example@gmail.com) with the one you want to use to receive emails.
Once the form has been added, be sure to activate it.
You've now added a file upload form to your Blogger website successfully. If you have any questions, please leave them in the comments area.
FAQs
Are the File Upload Forms on Blogger responsive?
Yes, the file upload form above is incredibly user-friendly and entirely responsive, and you may use it on the Blogger website.
Is this form compatible with WordPress?
Yes, including Wordpress. You may use it in any other CMS platform.
Can I change the form's style, such as the color or width?
Yes, you can modify the style of the form by using CSS code.
How do I access the uploaded file?
You will access all uploaded files through this form in your Email Inbox Which is added to the form code. Make sure to change the email address before using it in your website.
{ "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [ {"@type":"Question","name":"Are the File Upload Forms on Blogger responsive?","acceptedAnswer":{"@type":"Answer","text":"Yes, the file upload form above is incredibly user-friendly and entirely responsive, and you may use it on the Blogger website."}}, {"@type":"Question","name":"Is this form compatible with WordPress?","acceptedAnswer":{"@type":"Answer","text":"Yes, including Wordpress. You may use it in any other CMS platform."}}, {"@type":"Question","name":"Can I change the form's style, such as the color or width?","acceptedAnswer":{"@type":"Answer","text":"Yes, you can modify the style of the form by using CSS code."}}, {"@type":"Question","name":"How do I access the uploaded file?","acceptedAnswer":{"@type":"Answer","text":"You will access all uploaded files through this form in your Email Inbox Which is added to the\nform code. Make sure to change the email address before using it in your website."}} ] }