Basic HTML
Creating A Link
<a href="http://www.google.com" target="_blank">GOOGLE</a> creates the link below:The bold part is optional and there so that when you click the link, the new page will open up on a different page rather than the one you're on.
If you want an image link:
<a href="http://www.google.com" target="_blank">
<img src="http://www.google.com/intl/en_ALL/images/logo.gif" border="0"> </a>
creates the link below:
The bold part is optional and there so that the image will not have that ugly purple border image links do in Internet Explorer.
Coding An Image
As you can imagine from the tutorial above...
<img src="http://www.google.com/intl/en_ALL/images/logo.gif">
Making Text BOLD
<b>Words Here</b> makes this happen: Words Here
Skipping Spaces In Paragraphs
It sucks when your blog/MySpace page/whatever looks like this:
I am Sam. I like cheese on Fridays. Dogs are great. I am Sam. I like cheese on Fridays. Dogs are great. I am Sam. I like cheese on Fridays. Dogs are great. I am Sam. I like cheese on Fridays. Dogs are great.
Putting <br> after every sentence makes this happen:
I am Sam.
I like cheese on Fridays.
Dogs are great.
Putting <p> after every sentence makes this happen:
I am Sam.
I like cheese on Fridays.
Dogs are great.







