Images & Backgrounds

Simple Image and Background Image Examples

by mmansion

HTML

<!--

<img src="http://www.scottishstainedglass.com/wp-content/uploads/2010/11/frank-lloyd-wright-stained-glass-windows-large.jpg">
    
-->
    
    
<div>

    <p>SOME TEXT INSIDE</p>
    
</div>

CSS

div {
    color: white;
    width: 500px;
    height: 600px;
    background: url('http://www.scottishstainedglass.com/wp-content/uploads/2010/11/frank-lloyd-wright-stained-glass-windows-large.jpg');
    background-repeat: no-repeat;
    background-color: blue;
}