Hi!
It's pretty jacked up in the browser too if you make the window smaller. You've made a very common newbie mistake. You try to format pretty lines with BR tags. You don't need to control where the lines should break for normal text. In fact, you shouldn't do that. The browser will wrap the lines for you, using the available width.
Remove the BR tags at the end of every line. Replace the double BR tags you've used to mimic paragraphs with real P tags (
Paragraph).
Instead of this...
HTML
<BR>
<BR>
<p>Travel insurance is a type of insurance that is designed to cover many types of expenses that one might accrue or losses<BR> one might experience while traveling, whether within one’s own country or in a foreign one. It covers a wide breadth of<BR> different potential costs, and is used in countries around the world. In this article, we’ll take a look at some of the aspects<BR> of travel insurance that anyone considering getting it should know, such as what is typically covered and how much it <BR>typically costs. We’ll even go over a few exclusions that you’ll want to keep in mind, assuming that they apply to you.
<BR>
<BR>
There are several things that people commonly use travel insurance to cover – one of the primary ones are medical expenses, as many healthcare plans do not cover costs while in a foreign country, and many foreign countries will not accept health insurance from the traveler’s country of origin. Travel insurance will assure you that your potential medical expenses will be taken care of. Travel insurance also includes emergency evacuation, and in the event that some catastrophic event or political trouble ensues while you are in the country you will be guaranteed safe passage out of it. This is especially crucial in countries that experience frequent armed conflicts, or if you are traveling in a country currently at war.
<BR>
<BR>
you do it like so.
HTML
<p>
Travel insurance is a type of insurance that is designed to cover many types of expenses that one might accrue or losses one might experience while traveling, whether within one’s own country or in a foreign one. It covers a wide breadth of different potential costs, and is used in countries around the world. In this article, we’ll take a look at some of the aspects of travel insurance that anyone considering getting it should know, such as what is typically covered and how much it typically costs. We’ll even go over a few exclusions that you’ll want to keep in mind, assuming that they apply to you.</p>
<p>
There are several things that people commonly use travel insurance to cover – one of the primary ones are medical expenses, as many healthcare plans do not cover costs while in a foreign country, and many foreign countries will not accept health insurance from the traveler’s country of origin. Travel insurance will assure you that your potential medical expenses will be taken care of. Travel insurance also includes emergency evacuation, and in the event that some catastrophic event or political trouble ensues while you are in the country you will be guaranteed safe passage out of it. This is especially crucial in countries that experience frequent armed conflicts, or if you are traveling in a country currently at war.</p>
To get it "to the left" you need more than this though. You could use a two column table or (preferred) CSS.
You have a bigger problem. Browsers other than IE Windows will show the raw HTML. Try with for example FF to see it. This is because the page is served with the wrong content-type from the server, text/plain instead of text/html. If you use the .html extension you'll hopefully get the right content-type.