Is there a way to position the label right next to the input form? I've attempted different methods without success. Could you please review my code below?
<div class="modal-body">
<form class="form-horizontal">
<div class="form-group">
<label>Type</label>
<input type="email" placeholder="Email Address" class="form-control">
</div>
<div class="form-group">
<label>First Name</label>
<input type="password" placeholder="Password" class="form-control">
</div>
</form>
</div>
css
div.form-group{
display: inline;}