HTML-Lesson 6-images
Images are the fun parts of websites. Good imaging can either encourage or deter vistors. Before i start though i warn you that images make pages significantly longer loading so keep imaging to a minimum.
Images only reqire a very basic code all you do is define that its an image and tell the browser where it is.
<img src="doc.jpg">
tht gives you an image on your page you can also, for access purposes add a label to links by adding in :
alt="this is the label"
for an example look at the w3schools link in the corner. Hover your mouse over and see the label pop up.
Lesson 5-links