Simple Newsletter Opt-in
499 ViewsFreeFrontend.dev
This code snippet provides an easy way to add a simple newsletter opt-in form on one row. The form contains a title and an email address field, allowing website visitors to easily subscribe to your newsletter. With just a few lines of code, you can quickly add this form to your website and start growing your newsletter list.
<section class="py-5 my-md-5">
<div class="container">
<div class="row align-items-center text-center">
<div class="col-12 col-lg-auto">
<h2 class="display-5 fw-bold me-5 m-0 mb-4 mb-lg-0">Subscribe Today</h2>
</div>
<div class="col">
<div class="mx-auto">
<div class="input-group">
<input class="form-control bg-light" placeholder="Email address" type="text"> <button class="btn btn-primary" type="button">Subscribe</button>
</div>
</div>
</div>
</div>
</div>
</section>




Share
Like what you see? Share this with your friends!
Or copy link: