how to add vertical space between two text boxes in html

Solutions on MaxInterview for how to add vertical space between two text boxes in html by the best coders in the world

showing results for - "how to add vertical space between two text boxes in html"
Hannah
04 Jul 2017
1Use <br> tag after your input tags 
2ex: <input type="text" id="" placeholder="Enter Name"><br><br>
3OR
4Place each input tag into separate div tags.
5ex: <div class="form-control"> //using class is optional,I use this for bootstrap 
6        <input type="text" id="" placeholder="Enter Name">
7    </div>