Learn Create Your Own Split Screen

Next Page

The <p> tag means start a new paragraph, and the <h2> tag means make a level-two heading ("Level-two" heading means the second-biggest type of heading. h1 is the biggest.)

The <b> tag means use bold text until </b> appears, and <i> does a similar thing with italics.


This introduces the "silver rule" of HTML, which is that (very often) things that have starts must also have ends.

An obvious example of that every HTML page starts with a <HTML> tag, and ends with a </HTML>. It's body starts with a <body> tag, and ends with a </body>.


Challenge: Try bolding the word "caterpillar".