Table of Contents
 Basic HTML Code
Index Changing Text by using HTML

HTML
This is an acronym for the Hypertext Markup Language. It is a computer language used for Web pages on the Internet. It creates electronic documents which can be read and understood on different kinds of computers.

Following is a list of different Html codes you can use most anywhere that you can type text in the tools. There are some places, though, that you can NOT use these codes. There will be a list of these places soon.

Bold Center and Italics: <b>this will be bolded</b> <i>this will be italicized</i> <center>this will be centered</center> Changing the font: <font face="arial"> this will be font type of arial </font> <font color=red> this will be red </font> <font size=7> this will be font size of 7 (huge) </font> <font face="arial" color=red size=7> this will be font type of arial, the color of red, and the size of 7 (huge) </font> Font Types Linking: <a href="pagename.html"> this text will link to pagename.html </a> <a href="http://www.amazon.com"> this links to amazon.com </a> <a href="mailto:you@youremail.com"> this will link to your email address </a> Form cgi: <form method="post" action="http://abc.eznettools.net/cgi- bin/ez-pagebuilder/form.cgi?you@youremail.com"> create your form here </form> Target linking: <a href="pagename.html#keyword"> this will link to the page 'pagename.html' and go to the place on the page that has the keyword </a> <a name="keyword"> (place this on the page where you want the link to go to.) Graphics: <img src="http://yourdomainname.com/graphicname.jpg"> To link a graphic: <a href="http://yourdomainname.com/pagename.html"> <img src="http://yourdomainname.com/graphicname.jpg"> </a> Sound: (in header block) <embed src="soundfile.mid" height=0 width=0 autostart=true> </embed> Tables: <table width=600 border=1 align=left> width border and align are optional <tr valign=top> valign is optional <td width=50% align=left> width and align are optional ****Information inside the table.**** </td> <--REQUIRED </tr> <--REQUIRED </table><--REQUIRED Pages will not display without closing tags
Feedback