I found this html code which I want to modify to load image into html code:
<section class="bg-img well-top">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-offset-2 col-sm-8">
<form class="search-form" action="http://static.livedemo00.template-help.com/wt_57621/search.php" method="GET" accept-charset="utf-8">
<label class="search-form_label">
<input class="search-form_input" type="text" name="s" autocomplete="off" placeholder="Search Scripts"/>
<span class="search-form_liveout"></span>
</label>
<button class="search-form_submit fa-search" type="submit"></button>
</form>
</div>
</div>
</div>
</section>
CSS code:
.bg-img {
background: no-repeat url(../images/bg-img.jpg);
background-size: cover;
padding-top: 90px;
padding-bottom: 133px;
text-align: center; }
@media (max-width: 767px) {
.bg-img {
padding-top: 70px;
padding-bottom: 80px; } }
I would like to load the image file into the html code.