Compile a personal top 10 list. These should be ten things that inspire you, that you're interested in right now, or that make you want to be an artist/designer. It could have a theme, or no theme. It's a self-portrait in the form of a list. We'll use this as a way to introduce each other, and to get started coding.

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>

Screen Shot 2022-01-30 at 6.33.16 PM.png

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>

Screen Shot 2022-01-30 at 6.39.25 PM.png

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>

Screen Shot 2022-01-30 at 6.48.51 PM.png