Below are some basic HTML from coding links with text to images, making words bold, or simply skipping a space... Remember that with each opening tag: <> there is an ending tag: </>
<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.
As you can imagine from the tutorial above...
<img src="http://www.google.com/intl/en_ALL/images/logo.gif">
<b>Words Here</b> makes this happen: Words Here
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.