I designed two input boxes and tried to move them together, but unfortunately my code is not working as expected
It seems like a simple issue, yet the input boxes are displaying like a list rather than side by side.
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" />
<h2>Start Time</h2>
<div class="row">
<div class="col">
<label for="startTime">Hour(s) </label>
<input type="number" class="form-control" id="startTime" min="0" max="23">
</div>
<div class="col">
<label for="startTime">Minute(s) </label>
<input type="number" class="form-control" id="startTime" min="0" max="59">
<!--input type can be changed accordingly-->
</div>
</div>
Can anyone help me troubleshoot this issue?