|
| www.kdwebpagedesign.com |
|
BASIC HTML ::
Welcome
Introduction to HTML What is an URL? Browser Safe Fonts Photo Size and Compression Formatting Your Text Paragraphs, Linebreaks, Rules The Marquee Tag Adding Images Adding Text and Image Links Making Lists Tables: Basics Tables: Backgrounds and Color Tables: Colspan and Rowspan Tables: Practical Samples BASIC CSS ::
Introduction to CSS
Adding Backgrounds and Color The <div> and <span> Tags Formatting Your Text/CSS Making Lists/CSS Image Borders/CSS Hyperlinks/CSS Tables/CSS Fun with CSS USER Tools ::
Custom Auction Listing Creator: 1
Custom Auction Listing Creator: 2 Choosing Your Colors Mix-and-Match Backgrounds JavaScript Tricks ::
Other Information ::
eBay Related Questions
Customizing Your eBay Store Hosting Your Own Photos on eBay Using Irfanview to Crop Photos What Does That Term Mean? Donations ::
Do you find our Tutorials helpful? Are the free Auction Templates helping your sales? Donations of any amount are appreciated to help keep this site up and running!
|
![]() |
Making ListsLists go way back to the beginning of HTML and they present information in an easy to format fashion. There are three types of lists: unordered lists <ul>, ordered lists <ol>, and definition lists <dl>. Unordered ListsAn unordered list starts with the <ul> tag. Each list item starts with the <li> tag. Using the attribute type="x" you can choose between disc, circle or square. If you do not include the type="x" attribute, it will default to disc.
<ul> Ordered ListsAn ordered list starts with the <ol> tag. Each list item starts with the <li> tag. Using the attribute type="x" you have the choice of numbers, uppercase letters, lowercase letters, uppercase Roman numerals or lowercase Roman numerals. If you do not include the type="x" attribute, it will default to numbers.
<ol> Nested ListsYou can also nest lists giving it an outline effect.
<ul> Definition ListsA definition list is not a list of items. This is a list of terms and explanation of the terms. A definition list starts with the <dl> tag. Each definition list term starts with the <dt> tag. Each definition list definition starts with the <dd> tag.
<dl> |