HTML Tags

Please ignore this page. Some of it ain't pretty (formally correct) code. It's just some stuff for my reference.

Embedding a picture:

One of the easiest ways to provide your photo to be embedded into a post is to upload it onto an image hosting site such as Photobucket, Flickr, etc. That should be pretty straight forward, and the individual sites will give instructions on how to get your photos uploaded to their site when you sign up.

Once your picture has been uploaded, find its image location address (URL) by right clicking on the image and copying the image location. Some sites may even provide the appropriate HTML code in a text box below the photo for your convenience. It will be the one that begins with <<!-- -->a href=...

Let's say, as an example, that the address of the picture you want to post is http://somepicturesite.com/yourpicture.jpg

To embed the picture into a post, use the command:

<<!-- -->img src="http://somepicturesite.com/yourpicture.jpg">

_____________________________________

If your picture is too large to fit nicely into the text page, you can add a width attribute. This is a good idea to keep posts from being hard to read.

The command with the width attribute would look something like:

<<!-- -->img src="http://somepicturesite.com/yourpicture.jpg" width=600>

_____________________________________

Another option is to use a text link which might be beneficial to people on slow connections.

To do this, use the command:

<<!-- -->a href="http://somepicturesite.com/yourpicture.jpg">your text goes here<<!-- -->/a>

_____________________________________

Note that I had to use special characters to get the commands above to show up here without turning into pictures, but you can use them as shown (with the correct image web address, of course).

Basic text formatting tags:

<b>text</b> produces bold text

<i>text</i> produces italicized text

<big>text</big> produces big text

<small>text</small> produces small text

<sub>text</sub> produces subscripted text

<sup>text</sup> produces superscripted text

<ins>text</ins> produces underlined (inserted) text

<del>text</del> produces striked-out (deleted) text

<blink>text</blink> produces blinking text

<center>text</center> produces centered text

<pre>text</pre> produces preformatted text spaced as typed

<<!-- -->img src="image.jpg"> produces <img src="image.jpg">

<a href="web address">text</a> produces an embedded text link to the web address

<a href="web address" target="_blank">text</a> produces an embedded text link to the web address that will open in a new tab or page

<span style="background-color: #FFFF00">text</span> produces yellow-background highlighted text

or

<font style="background-color: yellow">text</font> produces yellow-background highlighted text

<span style="color: red; font-size: 14pt">text</span> produces red-lettered text in larger letters

<Body background="image address"> specifies a background image

(example: <Body background="http://www.bellwebs.com/~garden/spambig.jpg"> )

http://www.stevenhargrove.com/redirect-web-pages/

www.webconfs.com/how-to-redirect-a-webpage.php