Welcome to Doors2Stores



"Bringing understanding and awareness of eBay Stores"

eBay Store owners dedicated to sharing knowledge
and resources for a better shopping community

   

What is HTML?

 
HTML (Hypertext Markup Language) is the language of the web. HTML is a set of tags that are used to define the content, layout and the formatting of the web document. HTML Tags are code to identify the different parts of a document so that a web browser will know how to display it.
  • They are always surrounded by the two characters < and > and these characters are called angle brackets
  • HTML tags come in pairs like <b> and </b>, the first tag is called a start tag and the second tag is the end tag. End tags should always be closed in the reverse order of the start tags, but a lesson for another time (an example is below in #3)
  • The text between the start and end tags is the element content
  • HTML tags are not case sensitive, meaning <b> means the same as <B>. I always use lowercase tags. Why? If you want to prepare yourself for the next generations of HTML you should start using lowercase tags. The World Wide Web Consortium (W3C) recommends lowercase tags in their HTML 4 recommendation, and XHTML (the next generation HTML) demands lowercase tags.
Example #1 - HTML Tags

<p>Hello, my name is Kathy</p>

<p> is the start tag
Hello, my name is Kathy is the element content
</p> is the end tag
 
Tag Attributes can provide additional information about the HTML elements on your page.
  • Some HTML tags only contain the tag by itself, where others can also contain several attributes
  • Attributes are always added to the start tag of an HTML element
  • Attributes are separated from the tag with a single space
  • Attributes always contain a value, also referred to as a parameter, and the value is separated from the attribute by an equal sign = with no spaces
  • Attribute values should always be enclosed in double quotes " ", it's just a good habit to get into. Quotes may not be always required, but if you use them all the time, you won't have to guess when you should or shouldn't use them.
Example #2 - Tag Attributes

<p align="center">Hello, my name is Kathy</p>

<p> is the start tag
align is the attribute
center is the value
Hello, my name is Kathy is the element content
</p> is the end tag

Example #3 - Multiple Attributes

<p align="center"><font face="Arial" size="2">Hello, my name is Kathy</font></p>

<p> is the start tag
align is the attribute
center is the value
<font> is a second start tag
face is the attribute
Arial is the value
size is the second attribute
2 is the value of the second attribute
Hello, my name is Kathy is the element content
</font> is the end tag of the second tag
</p> is the end tag of the first tag

Example #4 - a more simple example of multiple attributes using just a start tag

<table width="100%" align="center" border="1">

<table> is the start tag
width is the first attribute
100% is the value
align is the second attribute
centre is the value of the second attribute
border is the third attribute
1 is the value of the third attribute
 
These sites may help to get you started:

Bob's Tips
Help on eBay: HTML
HTML Goodies - The Basics
eBayer eobcards - My Copy and Paste HTML for eBay
eBayer ourhutch - complete Auction Services and HTML Help Site
eBayer ghscruggs - a GREAT site with links for HTML, fonts, clearing browsers, etc.....
W3Schools - HTML Tutorials (one of my favourites)
Webmonkey - HTML Cheatsheet
Zoicks - Hints, tips, tricks eBay related links
 
Return