// References / HTML Attributes

Posted The: 30/07/2008 - AT: 22:02

Edited The: 02/09/2008 - AT: 13:16

This entry is a list of attributes, including a few examples.

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.

Stumble It!

Author: BlueBoden

Comments: [0]

  1. HTML Tutorial
  2. CSS Tutorial
  3. XHTML Tutorial
  4. RSS Tutorial
  5. PHP Tutorial
  6. htaccess Tutorial
  7. Server Tutorial
  8. SEO Tutorial

Checked At:04:44

7 Guests

0 Users

Online doing the past 15 Minutes!

PageRanking.dk - Flere hits og højere PageRank - GRATIS tilmelding!

This page was created in 0.0842089653015 seconds

Welcome Guest