I'm looking for a way to position an element inside a row class.
Check out the JS Fiddle link: https://jsfiddle.net/jLhvmq24/2/
The small tag "Enter Business Email" needs to be displayed below the input box.
<div class="row">
<div class="input-group col-10">
<input type="text" class="form-control" placeholder="email address">
<small class="text-muted">Enter Business Email.</small>
</div>
<div class="col-2">
<button class="btn btn-light">Subscribe</button>
</div>
</div>