| KNOWLEDGEBASE

HTML - Formatting your text

Article ID: 262
Last updated: 25 Nov, 2011

It is possible to use HTML to format the appearance of the text you input into your website.

Please note that this stage, this tutorial is recommended for our eShop uses, as our eWeb package does not have a feature for HTML editing.

This tutorial will step you through the common text edits you may need to perform. We recommend typing up all your text and formatting using a plain text editor such as Notepad, rather than using Microsoft Word. The reason behind this is that Microsoft Word uses its own code to display text visually on your screen which is not completely compatible with HTML.

1. Making text bold

Text can be made bold by surrounding it by bold tags.

The text will display like this: This text will appear bold

2. Underlining text

Text can be underlined by surrounding it by underline tags.

The text will display like this: This text will appear underlined

3. Italicised text

Text can be made italicised by surrounding it by italics tags.

The text will display like this: This text will appear italicised

4. Changing the font size

You can set the font size using pixels and a range of numerical font sizes.




The text will display like this: This font is size 1
This font is size 2
This font is size 3 and so on.

5. Changing the font face

You can set the font family to a range of fonts, such as Verdana, Arial, Times and so on. We recommend only using web safe fonts.




The text will display like this: This font is Arial.
This font is Verdana
This font is Times and so on.

6. Using Headings

HTML comes with pre-defined headings in a range of sizes.




The text will display like this:

This font is Heading 1.


This font is Heading 2


This font is Heading 3

and so on.

7. Changing the font colour

You can change your font to any HTML colour available. For a list of available HTML colours, click here.




The text will display like this: This font is red.
This font is blue.
This font is green and so on.



Prev   Next
HTML - Creating paragraphs     HTML - Adding an image