Lesson 2: Making Headings


Return to Lesson 1

Continue on with Lesson 3


Heading tags tell the computer how large to make the words. These tags must be used in pairs. Headings are commonly used for titles in the document. Heading 1 <H1>...</H1> Heading 2 <H2>...</H2> Heading 3 <H3>...</H3> Heading 4 <H4>...</H4> Heading 5 <H5>...</H5> Heading 6 <H6>...</H6> Assignment 2 Pull up the assignment from lesson 1 and type the following between the body tags of the document. Then, check your work in your web browser. <H1>This is heading 1. </H1> <H2>This is heading 2. </H2> <H3>This is heading 3. </H3> <H4>This is heading 4. </H4> <H5>This is heading 5. </H5> <H6>This is heading 6. </H6> end of lesson