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
<!DOCTYPE html>
<html>
<body>
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
</body>
</html>
Comments
Post a Comment