Two ways of including images:
img
element
alt
attributeheight
and width
attributes<img src="images/shield.png"
alt="Harvard Veritas" height="328" width="281"/>
background-image
property
#header {
background-image: url(images/shield.png);
background-repeat: no-repeat;
}
Copyright © David Heitmeyer