Blog-Support

Basic HTML

posted Thursday, 1 February 2007

Although you can use the advanced editor some people prefer to go with the basic one. This can be tricky if you don't know much HTML. Well here we will tell you some basic HTML you can use. From making a word bold to adding images.

Special Characters

A classic question:

"So if every time the browser sees a < character and it assumes it's the start of the tag, how do I actually include the < in my page and not have it rendered as a tag?"

A HTML conundrum! All is not lost. The away round this is not to actually type the < but instead, insert a special code (or escape sequence) for the characters that may be interpreted as a tag. In this instance we replace < with &lt; and > with &gt;.

That may seem logical enough, but while it solves one problem it does create another one; how do we then write & sign if the browser will interpret these as a special escape sequence? Easy; we have an escape sequence for the & which is &amp;.

There are a number of these special characters that should really be escaped. You can see a complete list of them here.

Hints'n'Tips

Tag names can be expressed in either upper or lower case. The browser does not care.
It is important you do not put any spaces in the tag name. < B> is illegal for example.
Tag attributes do not need to appear in one line; they can be placed on different lines as long as the individuate key=data pair is kept on the same line.
The closing tag is always the same name as the opening tag; but prefixed with a slash (/)
Closing tags never contain any attributes.
All tags should have a closing tag; some do not. It is safe to always specify one.

tags:        



Need One-to-One Help?
If you are in any doubt, contact support

Related Posts

Tag Basics

More about HTML tags including anchors and special characters

First HTML Page

Beginners HTML

Inserting mp3s or music files.

Ever thought of inserting your favorite song as an mp3 or other audio file in to your blog? Here are the instructions on how to do so.

How to add a Flash animation

Instructions on how to add a Flash animation to a blog entry, header, or custom portlet.

How do I put HTML into my blog entry?

If you are using the advanced editor, then you need to make sure you are in HTML mode before you add in HTML, do this by clicking the "html" button along the top.

Inserting images using HTML

Instructions and examples on how to insert an image using HTML. This can be used in the Basic Editor, widgets, headers, and any other fields where you can input HTML.

Paragraphs and Line breaks in HTML

How to work with paragraphs and linebreaks in HTML.

HTML Special Characters

If you need to know how to add special characters to your blog, this is your ticket!

HTML Color Reference

Hex Color codes explained.

Basic HTML

Although you can use the advanced editor some people prefer to go with the basic one. This can be tricky if you don't know much HTML. Well here we will tell you some basic HTML you can use. From making a word bold to adding images.