The instructions below are only for MailChimp.
- Click here for instructions on how to generate a form
- When you get to step #5, don't copy the entire code - look for <form action="form action link will be here"> (you may have to scroll a bit)
- Copy the form action link and go to your Blogger dashboard > Layout > open the "Newsletter" widget
- Replace FORM-LINK with the link you've copied from MailChimp
Test the form to make sure it works.
Sidebar Form HTML
<form action="FORM-LINK" class="signup-form" method="post" target="_blank">
<input type="email" name="EMAIL" placeholder="Email address" value="" required />
<input type="submit" value="Subscribe" />
</form>
Home Page Form HTML
<div class="newsletter-wrapper"><div class="newsletter-wrap">
<div class="newsletter-header">
<h5>join Daphne's newsletter</h5>
<h3 class="title highlight-1">the best of the best, right in your inbox</h3>
</div>
<form action="FORM-ACTION-LINK" class="signup-form flexbox" method="post" target="_blank">
<input type="text" name="FNAME" placeholder="First name" value="" required />
<input type="email" name="EMAIL" placeholder="Email address" value="" required />
<input type="submit" value="Subscribe" />
</form>
</div></div>