
In-state tuition (per credit):
Undergraduate courses: $134.00
Graduate courses: $179.00
The tag <P> , however, can be used to create a paragraph break. Formatting the text with this tag
In-state tuition (per credit):<P>
Undergraduate courses: $134.00<P>
Graduate courses: $179.00<P>
Undergraduate courses: $134.00
Graduate courses: $179.00
Notice that paragraph breaks create a blank line between paragraphs. To create a line break without a blank line, use the <BR> tag:
In-state tuition (per credit):<BR>
Undergraduate courses: $134.00<BR>
Graduate courses: $179.00<BR>
You should notice, too, that any spacing is ignored by the browser. Multiple spaces are displayed as a single space. We will see later how to control spacing. HTML tags, by the way, are not case sensitive. They can be typed as uppercase (<BR>) or lowercase (<br>) or even a combination (<bR>).
The tags for line or paragraph breaks are single tags and do not require a closing tag. Other types of single tags are used to add horizontal lines (<HR>) or insert images into your document (<IMG>).
Now that you understand some general concepts, you can go on to Chapter 2 to create your first simple HTML document.