HTML
Tag Syntax
Simple Tag Syntax <name>
Extended Tag Syntax < name
attribute=value
>
Closing tag </name
> (no attribute=value
in the closing tag)
|
Basic
Simple tags (no closing tags necessary)
<p> = new paragraph
<br> = new line
<hr> = draw line across screen
|
Tags
that Format Text (Simple Syntax)
<center> text </center>
<b> text </b> = text
<i>
text </i> = text
<u> text </u> = text
<s> text </s> =
|
Tags
that Format Text (Extended Syntax)
<font
color=red>
type text here <font>
<font size=6>
type text here </font>
<font face=arial>
type text here </font>
<font color=red size=6>
type text here </font>
|
Tags
that create lists
<ul>
</ul>
creates an unordered (bulleted) list
<ol>
</ol>
creates an ordered (numbered) list
<li>
indicates a list item within the <ul> or <ol> tags
for example
|
|
|
<a
href=type_url_here> type link text here </a>
Link
example to a specific About Me page:
<a
href=http://www.ebay.com> Visit eBay! </a>
|
TIP:
the HTML used to create any web page is always viewable from your
browser.
If you notice something interesting in a web page and you dont
know how the web designer did it, follow the steps below (fig 57)

Fig. 57
|
|
In Internet Explorer, click View, then
Source. This will display the HTML formatted text behind the web page you
are viewing.
|
That concludes this tutorial in Basic HTML
for eBay Sellers. Uncle hope's you found it useful!
|