Working with Images

Inserting an Image

From Insert Bar:

The Alt Attribute is designed to show text as an alternative to the image in some cases, this includes:

You can also insert an image by dragging it from the Files Panel onto the document window. It will place the image where your cursor is on the page.

To better "place" and image, to the left or right, use the float property. Since I will often have multiple images on a page, I personally create a CSS class called fltLeft (Float Left), and lftRt Right) as listed below.

.fltLeft {
	float: left;
	margin-right: 8px;	/* to give the text some spacing from the image */
}
.fltRt {
	float: right;
	margin-left: 8px;	/* to give the text some spacing from the image */
}

Using Background Images

Background images is a common way to keep us from having a typical boring background.

Make sure however that your background isn't:

Cool things about Background Images:

To place a Background Image

Select CSS element to apply background image to then: