Quotes help make search much faster. Example: "Practice Makes Perfect"

Monday, December 8, 2014

Make a Website: HTML Navigation 2


<!-- Sample solution to index.html -->

<!DOCTYPE html>
<html>
  <body>
 
<ul>
 <li>My Name</li>
 <li>Browse</li>
</ul>
<ul>
 <li>Sign Up</li>
 <li>Log In</li>
 <li>Help</li>
</ul>

  </body>
</html>

2 comments:

  1. I haven't seen this post yet, so I hope I'm not double-posting. It's giving me an error message telling me I need 3 li components in the ul element, but mine is set up just like this.

    ReplyDelete
    Replies
    1. I don't know if the exercise has changed. But if you notice, there are two "ul" elements in the code. The first is
      ul
      li My Name /li
      li Browse /li
      /ul
      which has only two "li" components and
      ul
      li Sign Up /li
      li Log In /li
      li Help /li
      /ul
      which has three "li" components. Try adding another "li" component to the first list. Something like li My Contact Info /li and see if the error still shows up. Regards.

      Delete


This is an example of scrolling text using Javascript.

Popular Posts