Web Design Stuff
HTML Tutorials    CSS Tutorials    Web Hosting   Resources
Create a Web Page 101
Making Web Pages Intro What is a Web Page? Why Make a Web Page? The History of HTML Learn HTML or XHTML?
Basic HTML
Basic HTML Tutorials Basic HTML Necessities How to Make a Web Page How to Edit a Web Page The Basics of HTML Tags Basic HTML Page Structure HTML Attributes
HTML Font Codes
HTML Font Codes Intro HTML Font Color Codes HTML Font Size Codes HTML Font Style Codes HTML Bold/Italic Codes Combining Font Codes
Formatting Text
Formatting Text Intro Making Paragraphs Miscellaneous Formatting Headings & Subheadings Creating Hyperlinks
Using Graphics
Using Graphics on the Web Add Graphics to Your Pages Graphics and Accessibility How to Align Graphics Page Color & Background Graphics as Hyperlinks Horizontal Rules
Creating Tables
HTML Tables Tutorials HTML Table Fundamentals Background & Border Color Table Frames & Rules Table Width and Alignment Cells 1 -Space & Alignment Cells 2 -Row Column Span Cells 3 -Width & Height
Making Lists
HTML Lists Tutorials Bulleted Lists Numbered Lists Definition Lists
HTML Frames
HTML Frames Tutorials Using Frames for Layout Advanced Frame Layouts Putting Hyperlinks in Frames Frame Border Width Color, Margin and Control Problems with Frames SmartFrames: A Solution SSI: An Alternative to Frames
Web Page Forms
Making Feedback Forms A Simple Feedback Form Installing NMS FormMail Debugging Your Setup My Web Host is Out to Lunch User Input Components Text Fields Checkboxes & Radio Buttons Dropdown Menus Push Buttons Layout and Presentation
Basic CSS
Basic CSS Tutorials What is CSS? Why You Should Use CSS How to Use CSS Inline Styles Embedded Style Sheets External Style Sheets Class Selectors ID Selectors Combining Selectors
CSS Properties
CSS Properties Intro Font Styles Width, Height & Spacing Borders Backgrounds Position Float & Alignment Hyperlinks
All About Web Hosting
Hosting Your Own Website What is a Web Host? Your Website's Home Page Building a Website Offline About Free Web Hosting Best Free Web Hosting Commercial Web Hosting How to Get a Domain Name Ecommerce Web Hosting Web Hosting Terminology
Free Web Design Tools
Best Free Website Tools Best Free Text Editors Best Free Graphics Editors Free Website Analysis Tools
Setting Up HTML Kit
HTML Kit Introduction How to install HTML Kit Screenshot Breakdown Basic Configuration Overall Appearance Shortcuts and Startup Editing Window Customizing Toolbars Using the Favorites Tab Making a New Actions Bar Odds and Ends
Free Templates
Free Website Templates Two Column Fixed Width Three Column Liquid Layout Miscellaneous Templates Dynamic Menu Effects Two Column Experimental Terms of Use About These Templates
Website Templates Help
Getting Started Template Zip File Download How to Edit Your Template What to Edit in the HTML How to Add Your Logo Making a Website
Web Design Tips
Web Design Basics Tables vs. Tableless Using Tables for Layout Example Table Layouts World's Crappiest Web Page
Twitter Backgrounds
Twitter Backgrounds Intro Cool Twitter Backgrounds Cool Twitter Backgrounds 2 Plain Twitter Backgrounds Dark Twitter Backgrounds Best Twitter Backgrounds Cute Twitter Backgrounds Music Twitter Backgrounds Music Twitter Backgrounds 2 Twitter Backgrounds 101 TERMS OF USE
All About Web Browsers
What is a Web Browser? Mozilla Firefox Internet Explorer Opera How to Set Up Firefox Top 5 Firefox Extensions
 
Contact
Post Some Feedback Send Me An Email Iron Spider Blog About Iron Spider... Site Conventions
 
 
 

 

HTML Lists Tutorials

 

Somewhat easier to work with than HTML tables —although the layout is less sophisticated— lists present another method of formatting text on web pages. HTML permits you to make several kinds of lists and this section of Iron Spider deals with this in three short and concise tutorials which also contain examples of HTML source code and the resulting effects.


Bulleted Lists


Anybody who has done any kind of text formatting in a computer program, be it in an email, a word processor or whatever is familiar with ability to set a group of items or sentences into an unordered bulleted list such as the one below:

  • How to make a web page.
  • Where to get good web hosting.
  • How to buy a domain name.

This kind of list will display a 'bullet' beside each item in the list and will display the list indented. This is very useful to display a group of items that a viewer can quickly and easily scan through. HTML coding provides a way to create such lists and to customize the type of bullet that appears beside each item, e.g., a square, disc or circle.

Here is the HTML code to create the list shown above:

<ul type="disc">
   <li> How to make a web page.
   <li> Where to get good web hosting.
   <li> How to buy a domain name.
</ul>


Want to make a square bullet?

Simply replace type="disc" with type="square".

Click on the link below to read the full tutorial... :)

MORE...

 

Numbered Lists


If you want to create a list that is numbered either numerically or alphabetically, this is handled by an ordered list such as the one in the example below:

  1. List Item
  2. List Item
  3. List Item

A numbered list is created with the following HTML code:

<ol type="1">
   <li> List Item
   <li> List Item
   <li> List Item
</ol>

Simply replace type="1" with type="A" to create an alphabetized list and of course, List Item can be whatever you like...

MORE...

 

Definition Lists


Definition lists are a special kind of HTML list that allow you to display a list of items in a term/definition format. The term is displayed above and the definition of the term is displayed below and indented for easy reading such as the following example:

Web Browser
The program on your computer that permits you to 'browse' or view web pages on the internet.
Web Site
A collection of web pages that typically all reside at the same domain name, e.g., ironspider.ca.
Web Host
A company that provides a means to have your website available on the internet for all others to see all the time.

The HTML code for the above definition list reads as follows::

<dl>
   <dt>Web Browser
    <dd>The program on your computer that permits you to 'browse' or view web pages on the internet.
   <dt>Web Site
    <dd>A collection of web pages that typically all reside at the same domain name, e.g., ironspider.ca
   <dt>Web Host
    <dd>A company that provides a means to have your website available on the internet for all others to see all the time.
</dl>

MORE...

 





Best Free Stuff
for webmasters

Free Text Editors
Free Graphics Editors
Website Analysis Tools
Free Website Templates

See also:

Best Free Web Hosting

 

If you need a .COM web address, you can get one quick and easy at...

www.GoDaddy.com
HOME TOP NEXT ~>
 
HTML Tutorials |  CSS Tutorials |  Web Hosting |  Domain Names |  Web Design Resources
Iron Spider © Copyright 2004-2011 Robert Darrell