Tag

Description

Code

View

<B> bold <B>Bold text</B> Bold text
<U> underline <U>Underlined text</U> Underlined text
<I> italic <I>Italic text</I> Italic text
<BR> line break blah blah<BR>blah blah blah blah blah blah
blah blah blah blah
<CENTER> center <CENTER>Centered text</CENTER>

Centered text

<FONT> font <FONT FACE="Times New Roman">Times New Roman</FONT> Times New Roman
<FONT> font size <FONT FACE="Times New Roman" SIZE="4">Example</FONT> Example
<FONT> font color

<FONT FACE="Times New Roman" SIZE="+3" COLOR="#0000FF">Example</FONT> or

<FONT FACE="Times New Roman" Size="+3"
COLOR="blue">Text color</FONT>

Text color
Text color
<H1> heading 1 <H1>Heading 1</H1>

Heading 1

<H2> heading 2 <H2>Heading 2</H2>

Heading 2

<H3> heading 3 <H3>Heading 3</H3>

Heading 3

<H4> heading 4 <H4>Heading 4</H4>

Heading 4

<H5> heading 5 <H5>Heading 5</H5>
Heading 5
<H6> heading 6 <H6>Heading 6</H6>
Heading 6
<IMG> image <IMG SRC="http://static.flickr.com/88/218162042_763d2669c5_s.jpg" WIDTH="75" HEIGHT="75" BORDER="0" ALT="photo title"> photo title
<LINK> link <A HREF="http://www.google.com">Google</A>
<A HREF="
http://www.google.com" target="_blank">Open link in a new window</A>
Google
Link opens in a new window
<IMG><LINK> image and link <A HREF="http://www.flickr.com" target="_blank"><IMG SRC="http://static.flickr.com/88/218162042_763d2669c5_s.jpg" WIDTH="75" HEIGHT="75" BORDER="0" ALT="photo title"></A>
photo title
<IMG> rollover image with link <A HREF="http://www.flickr.com" target="_blank" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('rollover','','web_workshop/mouse_on.jpg',1)"><IMG SRC="web_workshop/mouse_off.jpg" name="rollover" width="75" height="75" border="0"></A> mouse over image
<P> paragraph

<P align="left">
Paragraph<BR>
aligned to the left
<BR>
<P align="right">
Paragraph<BR>
aligned to the right
<BR>
<P align="center">
Paragraph<BR>
aligned center

Paragraph
aligned to the left

Paragraph
aligned to the right

Paragraph
aligned center

<TABLE> table <TABLE BORDER="4" CELLPADDING="2"  CELLSPACING="2" WIDTH="100%">
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE>
<BR>
<TABLE BORDER="2" BORDERCOLOR="blue" CELLPADDING="2" CELLSPACING="2" WIDTH="100%">
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE>
<BR>
<TABLE CELLPADDING="2" CELLSPACING="2" WIDTH="100%">
<TR>
<TD BGCOLOR="gray">Column 1</TD>
<TD BGCOLOR="gray">Column 2</TD>
</TR>
<TR>
<TD>Row 2</TD>
<TD>Row 2</TD>
</TR>
</TABLE>


Column 1 Column 2

Column 1 Column 2

Column 1 Column 2
Row 2 Row 2