Hello,
You did a fantastic job. You only made 3 minor mistakes. These tiny mistakes affected the whole layout.
1
The link to your CSS file had a different name that what it was. This
was your biggest mistake but also the easiest to fix. For example your
link to the CSS file was:
Code:
<link rel="stylesheet" type="text/css" href="kirbystylesheet.css">
but your CSS file was actually named: kirbystyle.css. So all you had to
was change the line to:
Code:
<link rel="stylesheet" type="text/css" href="kirbystyle.css">
2
Your 2 images where located the same as your HTML and CSS file but in
the CSS it showed:
Code:
background-image: url(Rockswebpages/headerBG.jpg);
So all you had to do there was either create a folder called:
Rockswebpages and place your image inside or change the code to:
Code:
Background-image: url(headerBG.jpg);
3
Your last mistake is why most of the styles didn't show on the site. You made a note on the CSS file but forgot to close the note. If the note is not closed it stops all of the styles below from working. So here is the note you had:
Code:
/*If you want to use a color for the background instead replace above line with background-color: [insert color here with # sign in front];
Now /* is the tag to start the note which you had but you were missing the tag to close the note which is */ Here is what that line should have looked like:
Code:
/*If you want to use a color for the background instead replace above line with background-color: [insert color here with # sign in front];*/
If you start from the begging but remember the points above I am 100% sure you will end up with Lisa's exact example:
https://www.sequencehosting.com/test/index.html
Jack