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>