Bootstrap creates form in a line using form-inline
property in the form element
<h2>Inline forms</h2>
<form class="form-inline">
<div class="form-group">
<label for="username">Username:</label>
<input type="email" class="form-control" id="username" placeholder="username">
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="pwd" placeholder="Password">
</div>
<div class="checkbox">
<label><input type="checkbox">Remember</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
form-inline
in form elementform-group
in the div to create input type with email and class attribute value as form-control
with label as username, id=username and placeholder="username"form-group
in the div to create input type with password and class attribute value as form-control
with label as password , id=pwd and placeholder= "password"checkbox
in the div to create input type with checkbox with label as Rememberbtn-primary
which creates the submit button in primary coloroutput