The most important thing to keep in mind is that when browsers render HTML they will eat up all whitespace. In other words, if you type something like:
it will be rendered as:This is a test of some whitespace.
This is a test of some whitespace.
Generally this is not a bad thing. It means you do not have to worry about how wide people have set their browser windows, since the browser will format and wrap lines. However, it means that when you do need to explicitly end a line or start a new paragraph, you have to do something beyond hitting return or leaving a blank line in what you type.
a browser will display it as:This is going to be my first paragraph. I hope you like it. <p> This is the second paragraph. May it be more interesting than the first one.
This is going to be my first paragraph. I hope you like it.This is the second paragraph. May it be more interesting than the first one.
results in:If I type two lines without a linebreak tag, there is no break. <p> But when I use a the linebreak<br> tag, you see that the line breaks.
If I type two lines without a linebreak tag, there is no break.But when I use a the linebreak
tag, you see that the line breaks.
which gives you:This is <b>text I want to be in bold</b>. See?
This is text I want to be in bold. See?It is important to realize that you must remember the closing tag, i.e. the </b>, or else you'll end up boldifying the rest of the page.
which gives you:This is <i>text I want to be italicized</i>. See?
This is text I want to be italicized. See?Again, you must remember to close the tag.
The way to use the tag is:
Here's a link to the Arlington List's website, for example:<a href="http://some.url.here">Text of the link</a>
which becomes:If you click on the link, you'll go to the <a href="http://www.arlingtonlist.org">Arlington List</a>, OK?
If you click on the link, you'll go to the Arlington List, OK?
If you have Netscape or MS-Word (and probably other pieces of software), you can use their HTML-editing capabilities. Try not to get too fancy, and please do proof the results in your browser before entering them into the blog editor.
Good luck, and I hope to see you posting soon!