You probably noticed that your text didn;t line up the way you intended in the last assignment... If you put in a line of text and want to start a new line you have two options:
Use a line break, which simply starts a new line;
Use a paragraph break, which starts a new paragraph. Here is an example of their use:<p>
If you put in a line of text and want to start a new line you have two options.<p>
The first is to use a line break, which simply starts a new line.<br>
The second is to use a paragraph break, which starts a new paragraph.<p>
There are no ending tags for <br> and <p>.
Both tags have one attribute that controls how the text begins after the tag. We hardly ever use it for the line break. The attribute is commonly used for the paragraph break. The attribute is:
<p align=center> which starts a new paragraph that will be centered,
<p align=left> which starts a new paragraph that will be left justified, and
<p align=right> which starts a new paragraph that will be right justified.
Open your file called "template.htm".
Add tags to make the text look like you intended. Feel free to add color...
Save the file.
View it using the browser.