The reason it is not working is because of some errors in your code. For the background image, in your CSS you have this:
Code:
body {
background-color: #000000;
background-image: url(http:ethan.wmn.cc/images/back3.jpg);
background-repeat: no-repeat;
}
when it should be like so:
Code:
body {
background-color: #000000;
background-image: url(http://ethan.wmn.cc/images/back3.jpg);
background-repeat: no-repeat;
}
As for the links; you need to either use the full absolute url like so:
Code:
<a href="http://www.ethan.wmn.cc/images.html">Images</a>
or use relative urls like so:
Code:
<a href="/images.html">Images</a>
Hope this helps.
Bookmarks