|
| |
HTML Tags including - FONT COLOR - FACE - CENTER - SUP - SUB - STRONG |
HTML tags - Text Formatting tags
<B> - </B>
Bold, where <B> denotes the start of the bold text and </B> denotes the end, i.e. <B>test</B> would produce : test.
<CENTER> - </CENTER>
Center, this can be used to center align text or an image within a document. the text/image should be placed in-between the <CENTER> and </CENTER> tags.
<I> - </I>
Italic, produces italic text where <I> denotes the start of the text and </I> denotes the end of the text, i.e <I>test</I> would produce : test.
<U> - </U>
Underline, produce underlined text, where the text to be underlined should be placed between the <U> and </U> tags, i.e. <U>test</U> would produce : test.
<SUB> - </SUB>
Subscript, produces subscript text, where <SUB> denotes the start of the text and </SUB> denotes the end of the text, i.e. <SUB>test</SUB> would produce : test
<SUP> - </SUP>
Superscript, produces superscript text, where <SUP> denotes the start of the text and </SUP> denotes the end of the text, i.e. <SUP>test</SUP> would produce : test
<TT> - </TT>
Typewriter Text, display text in a mono-spaced format, where <TT> denotes the start of the text and </TT> denotes the end of the text, i.e. <TT>test</TT> will produce : test
back to top | © Copyright 2001-2008 helpwithpcs.com
<FONT COLOR="#RRGGBB"> - </FONT>
Font colour, where RRGGBB is a hexidecimal (base 16) value and refers to the 3 colours RED, GREEN and BLUE. </FONT> denotes the end of the text to be affected. i.e. <FONT COLOR="#00FF00">nice green text</FONT> will produce : nice green text
<FONT FACE="?????"> - </FONT>
Specifies a different font type, where ????? is the name of the font. </FONT> denotes the end of the text to be affected, i.e. <FONT FACE="Courier">this is courier</FONT> will produce : this is courier.
<FONT SIZE=?> - </FONT>
Specifies the size of the font to be used, values range from 0 to 7, the </FONT> denotes the end of the text to be affected. i.e. <FONT SIZE=4>test</FONT> will produce : test.
<H?> - </H?> - Heading, defines text as a heading, where ? is a value between 1 and 6 and the text to be affected goes inside the tags, i.e <H4>text</H4> will produce :
text
<H? ALIGN=LEFT|CENTER|RIGHT> - </H?> - Aligned heading, where LEFT, CENTER, and RIGHT are the alignment parameters. For example to produce a heading that is right aligned you could use <H4 ALIGN=RIGHT>text</H4>.
<EM> - </EM> - Emphasis text, for example <EM>text content</EM> would produce :
text content.
<STRONG> - </STRONG> Gives a strong emphasis on text, for example <STRONG>text content</STRONG> would produce :
text content
<BLOCKQUOTE> - </BLOCKQUOTE> - Gives emphasis to text usually by the way of indenting.
back to top | back to Tags menu - © Copyright 2001-2008 helpwithpcs.com
|
|