Certified HTML Designer Learning Resources Core Attributes

Learning Resources
 

Core Attributes


Core HTML Attributes: ID, CLASS, STYLE, and TITLE

In HTML, certain attributes are fundamental to controlling the behavior and presentation of elements within a document. These attributes include ID, CLASS, STYLE, and TITLE. Understanding how to use these attributes effectively is crucial for creating well-structured and maintainable web pages.


ID Attribute

The ID attribute uniquely identifies an element within a document. No two elements in the same document can share the same ID value. This attribute is often used to apply specific styles or to target elements via JavaScript. Here’s a simple example demonstrating the use of the ID attribute:

<p id="firstp">My first paragraph.</p>

<p id="secondp">My second paragraph.</p>


In this example, each paragraph is given a unique ID: firstp and secondp. These IDs can be used to apply specific styles, like this:

p#firstp {

  color: navy;

  background: none;

}


p#secondp {

  color: black;

  background: none;

}

Additionally, the ID attribute can be used to create a target anchor for links within the same page:

<a href="#firstp">See the opening paragraph for more information.</a>

Note: Older browsers may not fully support the ID attribute for link anchors. For compatibility, authors may want to use an anchor (<a>) element with a name attribute.


CLASS Attribute

The CLASS attribute allows an element to be a member of one or more classes. Unlike the ID attribute, multiple elements can share the same class, making it easier to apply consistent styling across multiple elements. Here’s an example:

<div class="navbar">

  <a href="home.html">Home</a> | 

  <a href="index.html">Index</a> | 

  <a href="search.html">Search</a>

</div>


The CLASS attribute can be used to define styles that apply to all elements with a specific class:

.navbar {

  margin-top: 2em;

  padding-top: 1em;

  border-top: solid thin navy;

}


.navbar img { 

  float: right; 

}


@media print {

  .navbar { 

    display: none; 

  }

}


In this example, all elements with the class navbar will have the same styles applied.

Note: Some older browsers may not support multiple classes, but this is rarely an issue with modern web development.


STYLE Attribute

The STYLE attribute allows you to apply CSS rules directly to a specific element, inline within the HTML. For instance:


<p style="font-family: Verdana, sans-serif;">A popular font for on-screen reading is Verdana.</p>


While the STYLE attribute is convenient for quick, one-off styling, it’s generally better to use external stylesheets or the CLASS and ID attributes. This approach keeps content and presentation separate, making your code easier to maintain.


Best Practice: Use the CLASS or ID attributes instead of inline styles whenever possible. This approach provides better flexibility and control, especially when dealing with different media types or when you need to update styles across multiple elements.


TITLE Attribute

The TITLE attribute provides additional information about an element. This information is typically displayed as a tooltip when the user hovers over the element in visual browsers. The TITLE attribute is commonly used with links, images, and abbreviations:


<a href="mailto:[email protected]" title="Email Liam">[email protected]</a>

<img src="bride_groom.jpg" alt="Bride and Groom" title="Photo of the bride and groom">

<abbr title="Pound">lbs</abbr>

<abbr title="Provinces of Quebec">PQ</abbr>


In these examples, the TITLE attribute provides context or additional details that enhance the user's experience.


Summary

Understanding these core attributes—ID, CLASS, STYLE, and TITLE—is essential for effective HTML development. They provide powerful tools for targeting elements, applying styles, and enhancing the usability of your web pages. By using these attributes thoughtfully, you can create well-structured, accessible, and maintainable web content.

 For Support