Hi Kathy,
There are a couple problems with the syntax in the code that the student may want to look at.
For the img tags, there should be no “/img” at the end of the tag. It should either have just a slash before the right angle bracket or nothing. Also, all of the attribute values should be in quotes.
So, for line 23, this is wrong:
<img src="Alex%20Smith.jpg" alt=Alex Smith /img>
But these would be right:
<img src="Alex%20Smith.jpg" alt="Alex Smith" />
<img src="Alex%20Smith.jpg" alt="Alex Smith">
It’s also better in general not to have spaces in any of your file names. It just makes things a little more complicated.
Web Lab is not linking properly because of the syntax errors, but the regular browser is doing its best to link you even though the code is not exactly right. If the student corrects the syntax errors, Web Lab should link properly.
Elizabeth