![]() |
eBay Store owners dedicated to sharing knowledge |
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.
|
| 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.
|
| 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 |