[ acky.net logo ]




HTML

http://www.aceshells.com/
http://www.aceshells.com/

How to Insert and Make Text:

Normal | Bold | Italic | Underline | Blinking | Scrolling |
Change Font | Font Color | Change Font Size

 


Normal:  > Back > Top

To insert text into any html document, simply place it directly between the <BODY> tags. Use the tags <P> and </P> between paragraph.

<HTML>
<HEAD><TITLE>Ack</TITLE></HEAD>
<BODY><P>Welcome to Ack</P>
</BODY>
</HTML>

Bold:   > Back > Top

To create text which is bold simply place the <B> tag and </B> tag, at the beginning and at the end of the text which you would like to make bold..

<HTML>
<HEAD><TITLE>Ack</TITLE></HEAD>
<BODY><B>Welcome to Ack</B>
</BODY>
</HTML>

Italic:  > Back > Top

To create text which is italic simply place the <I> and </I> tags at the beginning and at the end of the text which you would like to make italic..

<HTML>
<HEAD><TITLE>Ack</TITLE></HEAD>
<BODY><I>Welcome to Ack</I>
</BODY>
</HTML>

Underline:  > Back > Top

To create text which is underlined simply place the <U> and </U> tags at the beginning and at the end of the text which you would like to make bold..

<HTML>
<HEAD><TITLE>Ack</TITLE></HEAD>
<BODY><U>Welcome to Ack</U>
</BODY>
</HTML>

Blinking:  > Back > Top

To create text which is blinking simply place the <BLINK> and </BLINK> tags at the beginning and at the end of the text which you would like to make it blink.. (only works with Netscape)

<HTML>
<HEAD><TITLE>Ack</TITLE></HEAD>
<BODY><BLINK>Welcome to Ack</BLINK>
</BODY>
</HTML>

Scrolling:  > Back > Top

To create text which scrolls simply place the <MARQUEE> and </MARQUEE> tags at the beginning and at the end of the text which you would like to make bold. (only works with i.e.)

This tags can also have the following attributes:
<MARQUEE bgcolor="#000000" WIDTH=150 LOOP=True>scrolls</MARQUEE>

<HTML>
<HEAD><TITLE>Ack</TITLE></HEAD>
<BODY>
<MARQUEE bgcolor="#000000" WIDTH=150 LOOP=True>Welcome to Ack</MARQUEE>
</BODY>
</HTML>

Change Font:  > Back > Top

To change the font of the text simply place the <FONT FACE="name of font"> and </FONT> tags at the beginning and at the end of the text which you would like to change the font of.

<HTML>
<HEAD><TITLE>Ack</TITLE></HEAD>
<BODY>
<font face="Arial">Welcome to Ack</font>
</BODY>
</HTML>

Change Font Color:  > Back > Top

To change the color of the text simply place the <FONT COLOR="name of color"> and </FONT> tags at the beginning and at the end of the text which you would like to change the color of.
List of colors

<HTML>
<HEAD><TITLE>Ack</TITLE></HEAD>
<BODY><FONT COLOR="#ff0000">Welcome to Ack</FONT>
</BODY>
</HTML>

Change Font Size:  > Back > Top

To increase the size of the text simply place the <BIG> and </BIG> tags at the beginning and at the end of the text which you would like to change the size of. You can use numerous number of these atributes to make the size even larger.
To decrease the font size simply place the <SMALL> and </SMALL> tags around the text which you would like to make smaller.

<HTML>
<HEAD><TITLE>Ack</TITLE></HEAD>
<BODY><BIG>Welcome to Ack</BIG><SMALL>Thank you for coming</SMALL>
</BODY>
</HTML>