How to add text over the image in bootstrap

I am noob in bootstrap and making one simple responsive web design. I had given the bootstrap container the image now i want to add text over the images, so i can add more text and images on that container. I tried on google but didn’t find the exact answer. Please help

<div class="container">
    <div class="row">
        <div class="col-xs-12 col-sm-6 col-md-8 col-centered">
            <div class="maintxt">
                <img src="background.png" class="img-responsive">
            </div>
        </div>
    </div>
</div>

and here is the image, what i want – http://i.imgur.com/FAPXpFL.jpg

Leave a Comment