Jump to content

Bev

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by Bev

  1. I have been using Microsoft Web Matrix to test my code and am beginning to wonder if it is my problem. Would you please suggest another application to test my code. I don't have server manager on my laptop.
  2. HERE IT IS body {background-color: #000000;}h1 {font-family: "Arial";font-size: 40px;color: #FFCC00;text-align: center;}ul {list-style-type: none;margin: 0;padding: 0;}li {display: inline;}p {font-family: "Arial";font-size: 20px;color: #FFCC00;}a:default {background-color: #FFCC00;font-family: "Arial";font-size: 40px;color: #000000;}a:hover {background-color: #FFCC00;font-family: "Arial";font-size: 40px;color: #0066FF;} <!DOCTYPE html><html><head><title>Landing Page</title><meta charset="UTF-8"></head><body><ul><li><a href="#default">HOME</a></li><li><a href="#about">ABOUT</a></li><li><a href="#campaign">CAMPAIGN</a></li> <li><a href="#videos">VIDEOS</a></li><!-- These lines are a comment for now<li><a href="suggestions.asp">SUGGESTIONS</a></li><li><a href="cartoons.asp">CARTOONS</a></li><li><a href="classifiedshome.asp">CLASSIFIEDS</a></li><li><a href="store.asp">STORE</a></li><li><a href="contact.asp">CONTACT</a></li>--></ul><h1>TEST</h1><h2>THIS SITE IS CURRENTLY UNDER CONSTRUCTION</h2></body></html>
  3. I received these 2 messages for each occurrence. Unknown element 'a href' or element cannot be placed here. Element 'a href' cannot be nested inside element 'li'.
  4. I copied the following code from the navigation bar example and tried it in my webpage. I received an error message that stated that href was not allowed in the <li> tag. What did I do wrong? What else is needed to make it work> <!DOCTYPE html> <html> <body> <ul> <li><a href="#home">Home</a></li> <li><a href="#news">News</a></li> <li><a href="#contact">Contact</a></li> <li><a href="#about">About</a></li> </ul> <p>Note: We use href="#" for test links. In a real web site this would be URLs.</p> </body> </html>
×
×
  • Create New...