Html Tips
You can edit the html tags that are generated if you need to make changes that are not available through this program if you understand a few basics.
Html tags are all enclosed < Html Tag >
Quotes are very important " " do not delete them.
Any text that you type in that is not enclosed with < > will be visible.
Tag <DIV ALIGN="CENTER"> Sets the table alignment to center.
Tag <center> Aligns Text to Center.
Tag <TABLE BORDER="1" WIDTH="100%"BACKGROUND="http://" BGCOLOR="#FFFFFF" BORDERCOLOR="#000000"> Sets the table border to 1 and the table width to 100% and the background color to #FFFFFF and the border color to #000000.
Tag <BGSOUND SRC="http://"loop="1"> BGSOUND SRC=" " Sets the background sound file source and the loop=" " sets number of times the sound file plays. If you set loop="2"> then the file would be played 2 times or if it was set to -1 it would play continuously.
Tag <FONT SIZE="3" ALIGN="CENTER"> Sets the font size to 3 and the font alignment to center.
Tag <FONT FACE="Arial,Helvetica,Verdana,sans-serif" Color="#000000"> Sets the font face to Ariel,Helvetica,Verdana or sans-serif and the font color to #000000.
Tag <A HREF="MAILTO:info@auction-help.com">Email US</a>This tag is a hyperlink email tag where the A HREF =MAILTO: sets the email address for the link and the Email US is what the viewer will see and the </A> ends the link.Notice the part the viewer sees is not enclosed wirth
< > .
Tag <A HREF="http://www.auction-help.com">Click Here To Visit My Web Site</A> This tag is a link to a web site where <A HREF="http://www.auction-help.com"> Sets the url address for the link and Click Here To Visit My Web Site Is what the viewer will see and click on. Notice the part the viewer sees is not enclosed wirth < > .
Tag <BR> inserts a line break
Tag <HR> inserts a horizontal line.
Tag <P> inserts a paragraph break.
For every format tag there is an ending tag such as <FONT =" " > </FONT>
There are several books available to learn more about html tags. |