Test your code in
http://www.w3schools.com/html/tryit.asp?filename=tryhtml_basic_document
<HEAD>
<TITLE>HTML Sample Page</TITLE>
</HEAD>
<BODY BGCOLOR="PINK">
<CENTER>
<H4>By Maribeth Ward</H4>
<H2>My Interview</H2>
</CENTER>
Psychologist Interview
<P>
What are the career traits of a psychologist?
<P>
Some of the career traits of a psychologist are as follows: A psychologist is social - they should enjoy working with people. A psychologist is trustworthy - they must be a reliable person, because patients share personal information with them. A psychologist must be patient. clients, making positive changes takes time! A psychologist must be well organized and keep detailed records so they can track the progress of a patient over time. Detailed records are also needed for insurance purposes.
<P>
What are the duties of a psychologist?
<P>
There are many duties of a psychologist. They must keep accurate records of patients. They also must remain calm when patients are telling them dramatic things that have happened in their lives. It is also important that a psychologist remains unbiased. They must look at the facts and not have a preconceived notion of what the person should do in a particular situation. A psychologist is non-judgmental. The patient must be able to trust them, and if someone is judging you it is difficult to trust them.
<P>
What is the work environment for a psychologist?
<P>
The work environment for a psychologist is that they work indoors and are often sitting. The work in an office and the office has comfortable chairs so the patients feel comfortable when they are sharing details of their life. Psychologists work varied hours depending on the availability of their patients. Their job is safe, but it is often stressful because they hear about some very serious situations that occur in the lives of their patients. For example, they might hear about suicide attempts.
<P>
<H3>Line Breaks</H3>
HTML doesn't normally use line breaks for ordinary text. A white space of any size is treated as a single space. This is because the author of the page has no way of knowing the size of the reader's screen, or what size type they will have their browser set for.<P>
If you want to put a line break at a particular place, you can use the "<BR>" command, or, for a paragraph break, the "<P>" command, which will insert a blank line. The heading command ("<4></4>") puts a blank line above and below the heading text.
<H4>Starting and Stopping Commands</H4>
Most HTML commands come in pairs: for example, "<H4>" marks the beginning of a size 4 heading, and "</H4>" marks the end of it. The closing command is always the same as the opening command, except for the addition of the "/".<P>
Modifiers are sometimes included along with the basic command, inside the opening command's < >. The modifier does not need to be repeated in the closing command.
<H1>This is a size "1" heading</H1>
<H2>This is a size "2" heading</H2>
<H3>This is a size "3" heading</H3>
<H4>This is a size "4" heading</H4>
<H5>This is a size "5" heading</H5>
<H6>This is a size "6" heading</H6>
<font size="3" color="red">This is some text!</font>
<font size="2" color="blue">This is some text!</font>
<font face="verdana" color="green">This is some text!</font>