Navigation 1 1/9

Navigation 1
We just learned about five HTML elements. Now let's see how to use them together to start creating the Airbnb home page.
Let's start by adding a navigation menu to the page. This can be done by writing a ulelement inside the body element. A ulelement describes a bulleted list:
<ul>
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ul>
Each item in the list is placed inside an lielement. Each li is nested inside the <ul>..</ul> tags, as represented by 2 spaces.
Instructions
  1. On line 6, change the li element text to your name
  2. On line 7, add another li element with the text "Browse"
Navigation 1
<!DOCTYPE html>
<html>
  <body>

    <ul>
      <li>Item 1</li>
      <li>Item 2</li>
    </ul>

  </body>
</html>

Comments

Popular posts from this blog

MEGA 暫存檔案刪除

IOS GCD多執行緒

利用CMD指令強制刪除