Session 1

HTML Tags

HTML tags are typically English words (such as body) or abbreviations (such as "p" for paragraph), that are distinguished from the regular text by being placed in small angle brackets.

Some tags dictate how the page will be formatted (for instance, <p> begins a new paragraph), and others dictate how the words appear (<b> makes text bold).

Still others provide information - such as the particular parts of the html document - (i.e., <html>, <head>, and <body>).

Back Continue