//I have encountered an issue with the HTML code I am using. I am trying to create input buttons in a horizontal layout, but they are not displaying correctly.
<div class="form-row">
<div class="form-group col-md-5">
<label for="fname">First name:</label>
<input type="text" class="form-control" id="fname" placeholder="First name">
</div>
<div class="form-group col-md-5">
<label for="lname">Last name</label>
<input type="text" class="form-control" id="lname" placeholder="lastname">
</div>
</div>