Creating Searchable Documents in HTML pages

Thursday, August 7th, 2008

Another extensible form of an HTML link that does not use the <a> tag is one that causes the server to search a database for a document that contains a user-specified keyword or words. An HTML document that contains such a link is known… Continue reading >>

Creating Simple menu list in HTML

Tuesday, July 1st, 2008

The <menu> tag displays a list of short choices to the reader, such as a menu of links to other documents. The browser may use a special (typically more compact) representation of items in a menu list compared with the general unordered list, or even use some sort of graphical pull-down menu… Continue reading >>

bullet listing in HTML pages

Tuesday, July 1st, 2008

The <dir> Tag

The designers of HTML originally dedicated the <dir> tag for displaying lists of files. As such, the browser, if it treats <dir> and <ul> differently at all (most don’t), expects the various list elements to be quite short, possibly no longer than 20 characters or so. Some browsers… Continue reading >>

Nested Lists in HTML

Tuesday, July 1st, 2008

Except inside directories or menus, lists nested inside other lists are fine. Menu and directory lists can be embedded within other lists.

Indents for each nested list are cumulative, so take care not to nest lists too much; the list contents could quickly turn into a thin ribbon of… Continue reading >>

Changing the Style and Sequence of Individual List Items

Tuesday, July 1st, 2008

Just as you can change the bullet or numbering style for all of the items in an unordered or ordered list, you also can change the style for individual items within those lists. With ordered lists, you also can change the value of the item number. As you’ll see, the combinations of… Continue reading >>

li tag and its use in HTML

Tuesday, July 1st, 2008

It should be quite obvious to you by now that the <li> tag defines an item in a list. It’s the universal tag for HTML list items in ordered (<ol>) and unordered (<ul>) lists, as we discuss above, and for directories (<dir>) and menus (<menu>), which we discuss in detail later in this chapter.… Continue reading >>

Different Atributes of Ordered list

Tuesday, July 1st, 2008
The start attribute

Normally, browsers automatically number ordered list items beginning with the Arabic numeral 1. The start attribute for the <ol> tag lets you change that beginning value. To start numbering a list at 5, for example:

<ol start=5>
<li> This is item number 5.
<li&gt