the big featured area is commonly referred to as the jumbotron
http://getbootstrap.com/components/#jumbotron
or
<div class="bigpic">
<span class="bigletters">Big Letters</span>
</div>
css
.bigpic {
postion:relative;
width: 100%;
height: 200px;
display: block;
background: url('www.pictureUlr.com');
}
.bigletters {
position: absolute;
display: inline-block
top: 40px;
left 40px;
font-size: 3em;
color: white;
}
this sets up a div below the menu that spans the full width and has a specific height.
It then designates an image as the background for that div. Additionally, it includes a span within (or above) the div which is positioned absolutely.