Style Rules
Embedding a Style sheets
External Style Sheets
Importing a Style Sheets
Styles Inline
Class
ID
SPAN and DIV
Quick Reference Table
HTML Tutorial
Databases and ASP
   


ID Attribute

The ID attribute is used to define a style.
See the following example:

#koo99 { color: green; font-family: verdana, arial, helvetica; font-size: 20pt}

In the style sheets, ID name is followed by a hash mark (#) for identification and it can be applied to HTML tag through the ID attribute:

<P ID=koo99>Welcome to web developer's library</P>