Navigation 2 2/9
Navigation 2
Nice work! Next, let's add another ul element to the page with a few more menu options.
Instructions
- After the closing
</ul>
tag, add another ulelement - Inside the
<ul>..</ul>
tags, add an lielement with the text "Sign Up" - Add a second li element with the text "Log In"
- Add a third li element with the text "Help"
<!DOCTYPE html>
<html>
<body>
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
<ul>
<li>Sign up</li>
<li>Log in</li>
<li>Help</li>
</ul>
<ul>
</body>
</html>
Comments
Post a Comment