OK something you should know with HTML is you should use relative paths when pointing to files on the computer..
Where you have code such as:
<img src="C:\Documents and Settings\Armando\Desktop\HTML\church pics/pastors1.jpeg" alt ="pastors" align="right" height="30" width="10"/>
First of all i would start my renaming the folder which contains you images to "church_pics" because it is never a good idea to have spaces in filenames.
Once you have renamed the folder insert this code in place of the old.
<img src="church_pics/pastors1.jpeg" alt="pastors" align="right" height="30" width="10"/>
You need to keep in mind that the html file will need to be one file up in the directory structure for this to work. If you move the html file it will cause the 'red X' you are talking about.
Apply this to all your images and it will work.