Once you have your list, make a webpage for your top 10. Your Top 10 webpage must include at least 10 tags.
Use this as a chance to experiment with a variety of HTML tags, and to see what kind of layouts are possible with just HTML.
Start by downloading this zip here and putting the entire folder into your interactive folder.
Tags you might want to use
A full list of tags can be found here.
Ordered list <ol>
This makes a numbered list of items. Remember to enclose each item in <li>
and </li>
.
<ol>
<li>Blue</li>
<li>Light blue</li>
<li>Dark blue</li>
</ol>
Unordered list <ul>
This makes a numbered list of items. Remember to enclose each item in <li>
and </li>
.
<ol>
<li>Pizza</li>
<li>Chicken strips</li>
<li>Cereal</li>
</ol>
Anchor / Link to elsewhere <a>
Use an anchor tag to make a link. For an external link, include the https://
<a href="<https://www.youtube.com/watch?v=C-u5WLJ9Yk4>">Watch my favorite music video on Youtube.</a>