tutorial 1: images and image properties in HTML and CSS

watch it on YouTube

Notes

New Tags Covered

<img>
this tag links to an image. It requires a src property with the image location in order to function.

New CSS Covered

float:
property that affects the position of an HTML element on the page. float can be used to wrap text around an image. Valid values include left and right.
display:
property that assign a display type to an HTML element. Valid values include block, inline, and inline-block. inline-block is good for creating buttons.
[selector example] img.left
a selector formatted in this way will apply to the left class only when it is applied to an img tag.