I just figure it out hot to used the background-image attribute. Now my problem is that I want to fixed the background of my my jumbotron to the height off the screen. How can I do this? I am using bootstrap and Edge code.
MY HTML:
<!-- Jumbotron -->
<div class="jumbotron">
<div class="container">
<p>Logos.</p>
<p>Branding.</p>
<p>Website.</p>
<h4>and more...</h4>
<p><a class="btn btn-primary btn-lg" role="button">Start a project!!</a></p>
</div>
</div>
<!-- Jumbotron end -->
MY CSS:
.jumbotron {
background-image: url(../Images/background.png);
background-size: cover;
}