How to add a button to the input line to make it look like this?
<div id="search"> <div class="container"> <h1>Search UK house price data</h1> <form class="has-success has-feedback has-feedback-left"> <label class="control-label sr-only" for="inputSearch">Search UK house price data</label> <input class="form-control" type="text" id="inputSearch" placeholder="Enter a postcode, street or address"> <span class="glyphicon glyphicon-search form-control-feedback"></span> <button class="btn" type="submit">SEARCH</button> </form> </div> </div> A button appears at the bottom.
What is the problem? How, in general, should the code look approximately for the whole line?
