HTML Attributes

Posted The: 30/07/2008 At: 20:02

Last Edited: 30/04/2009 At: 20:55

This entry is a list of attributes in HTML, as well as a few examples as of how to use them.

Common Attributes

Attributes are attached to the opening tag, starting with its name, followed by the equal sign (=) and finally its quoted value.

Attribute:Description:
styleUsed to apply styles.
titleUsed for tool-tips.
classUsed to group elements, and by CSS selectors
idUnique id_name.

The Style Attribute:

<p style="font-weight:bold;">A paragraph of text</p>

The style attribute is used to apply CSS styles

The title Attribute:

<p><a href="/References/122/" title="Attributes in HTML">HTML Attributes</a></p>

The title attribute will be rendered as a small tooltip in most browsers, use it to apply a subdescription to an element.

The class Attribute:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">

  <head>
    <title>Class attribute Example</title>
    <style type="text/css">
     .Yellow {
      color: blue;
     }
     .Gray {
      color: blue;
     }
    </style>
  </head>

  <body>
    <h1>Class Attribute Example.</h1>
    <p class="Yellow">This paragraph is Yellow.</p>

    <p><a href="http://www.brugbart.com/" class="Yellow">Tutorials/References</a></p>
    <p><a href="http://validator.w3.org/" class="Gray">The W3C Markup Validation Service</a></p>

  </body>

</html>

The class attribute is used to group elements, this makes it easy to style elements by the use of class selectors in css.

The id Attribute:

The id attribute is similer to the class attribute, elements with an id attribute may be styled by the use of id selectors any given id must not accur more then once in a page, if you need to group elements you should use classes instead, ids are used to apply a unique identifier to an element. Below is a heading with a unique ID

<h1>Example</h1>
<p>Section Linking Example</p>
<h2 id="Section2">Section2</h2>
<p>Second Section</p>

You can link to the second section by adding #Section2 to the url.

Event Attributes

The event attributes is used by scripts.

Attribute:Value:Description:
onclickScriptA pointer button was clicked.
ondblclickScriptA pointer button was double clicked
onmousedownScriptA pointer button was pressed down
onmouseupScriptA pointer button was released.
onmouseoverScriptA pointer was moved onto.
onmousemoveScriptA pointer was moved within.
onmouseoutScriptA pointer was moved away.
onkeypressScriptA key was pressed and released.
onkeydownScriptA key was pressed down.
onkeyupScriptA key was released.

I18n Attributes

The Internationalization Attributes.

Attribute:Value:Description:
langLanguageCodeLanguage code
dirltr|rtlDirection for text.

These attributes where listed in the html4.01 Transitional DTD.

Comments: [0]

© Brugbart Webdesign