I have a page that I built that is validating on the w3c.org site as valid but the page does not show up on a browser. http://www.automobileclearinghouse.com/VillageInn/index.html Not sure what I am doing wrong, any help would be appreciated. I should specify that the page isn't totally done but should show up with what is there?
http://www.automobileclearinghouse.com/VillageInn/index.html Sorry, I was messing around with the DTD to see if it was that. Try again please?
You have got two errors in your CSS:
1) Change your container to this:
.container {
width: 990px;
height: 1350px;
}
In the above code there is a period before the word container; If you don't see it, just copy and paste what I have given and it should take care of it;
2) Your body has the property display: none; Remove it and it should work. this is what I did:
body {
font-family: "Comic Sans MS", cursive;
text-align: left;
vertical-align: baseline;
word-spacing: 1.50em;
/* display: none; */
width: 1020px;
height: 1350px;
position: fixed;
color: #356D86;
font-size: 20px;
margin-left: 30px;
background-image:url(http://www.automobileclearinghouse.com/VillageInn/Assets/Background.pn g);
background:no-repeat;
}
I simply commented it out and it should work.
Good luck.
North America
Europe, Middle East and Africa
Asia Pacific