| E-Commerce Newbie |
| Page: html-tips |
Many of the HTML commands outlined here are not the only commands used to perform these actions. This is just a basic tutorial, if you are interested in learning more or different methods, I recommend HTML Tutorial
The first thing to understand is that anything computerized will continue doing what it is told until it is told to stop.
Many commands have a stop or end command.
i.e. <b>Is the command for Bold Type the type continues to be bold until the </b>end command is used. You get the same result using<strong> strong </strong>
| Headline | <h1>headline 1</h1>, <h2>Headline 2</h2> |
| Paragraph | <p> New Paragraph</p> |
| Line Break | <br>there is no end tag, as the action is to start a new line |
| Center | <center>These tags will center anything on the
page center</center> |
| Underline | <u>Underline</u> |
| Italic | <i>Italic<i>or <em>Italic</em> |
| Color |
<font color="#0000ff">Color</font> |
| Size | <font size="14">Size</font> |
| Align Right | <font align="right"> Align Right </font> |
|
Size & Color |
<font size="10" color="#0000ff">Size and Color</font> |
Colors are defined by hexadecimal codes. I suggest you download & install "colorpic" Its a fantastic free tool you can choose a color or pick one straight off the screen. For true color Hex codes you can use a colour chart
| URL Link Displays as |
<a href="http://www.ecommercenewbies.com">Newbies</a> Newbies |
| Display Picture Displays As |
<img style="WIDTH: 100px; HEIGHT: 57px" alt=""
src="http://www.e-commercenewbies.com/images/logo.gif"> |
| Alternative Direct Link |
<img style="WIDTH: 100px; HEIGHT: 57px" alt=""
src="/images/logo.gif"> Path to picture from page file |
| Link Picture |
<a
href="http://www.e-commercenewbies.com"><img style="WIDTH: 100px; HEIGHT: 57px" alt=""
src="/images/logo.gif"></a> |
| Adding an Alt tag |
<a
href="http://www.e-commercenewbies.com"><img style="WIDTH: 50px; HEIGHT: 50px" alt="html for
newbies" src="/images/logo.gif" border="0" align="left" hspace="10" vspace="5"></a> |
|
Adding a |
Simple Button
<BUTTON> <STRONG>Button Text</STRONG></BUTTON>
<BUTTON >
<IMG SRC="/images/logo.gif" HEIGHT=50
WIDTH=100 ALT="Logo">
<STRONG>Button Text</STRONG></BUTTON>
|
If you have HTML Tips or Hints please take the time to post them here.