HTML Attributes
- Attributes provide additional information about HTML elements.
- HTML elements can have attributes
- Attributes provide additional information about an element
- Attributes are always specified in the start tag
- Attributes come in name/value pairs like: name="value"
| Attribute | Description |
|---|---|
| alt | pecifies an alternative text for an image |
| disabled | Specifies that an input element should be disabled |
| href | Specifies the URL (web address) for a link |
| id | Specifies a unique id for an element |
| src | Specifies the URL (web address) for an image |
| style | Specifies an inline CSS style for an element |
| title | Specifies extra information about an element (displayed as a tool tip) |
| value | Specifies the value (text content) for an input element. |
The lang Attribute
- The document language can be declared in the <html> tag.
- The language is declared in the lang attribute.
- The first two letters specify the language (en). If there is a dialect, use two more letters (US).
- Declaring a language is important for accessibility applications (screen readers) and search engines:
<!DOCTYPE html>
<html lang="en-US">
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
<html lang="en-US">
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
The Title Attribute
HTML paragraphs are defined with the <p> tag.
In this example, the <p> element has a Title Attribute.
When you move the mouse over the element, the title will be displayed as a tooltip.
The value of the attribute is "About Learncodeing":
Example:
<p title="About Learncodeing">
Learincodeing is a web developer's site.
It provides tutorials and references covering
many aspects of web programming,
including HTML, CSS, JavaScript, XML, SQL, PHP and etc.
</p>
Learincodeing is a web developer's site.
It provides tutorials and references covering
many aspects of web programming,
including HTML, CSS, JavaScript, XML, SQL, PHP and etc.
</p>
Try it Yourself
The Href Attribute
- HTML links are defined with the <a> tag.
- You will learn more about links and the <a> tag later in this tutorial.
The Size Attributes
The image size is specified in pixels: width="200" means 200screen pixels wide.
The filename of the source (src), and the size of the image (width and height) are all provided as attributes:
Example:
<img src="http://imgcluster.com/wp-content/uploads/2015/08/Wallpapers-tulips-in-the-snow-steven-milner-388x220.jpg" width="200" height="200">
Try it Yourself
The Alt Attribute
The alt attribute specifies an alternative text to be used, when an HTML element cannot be displayed.
The value of the attribute can be read by "screen readers". This way, someone "listening" to the webpage, i.e. a blind person, can "hear" the element.
Example:
<img src="http://imgcluster.com/wp-content/uploads/2015/08/Wallpapers-tulips-in-the-snow-steven-milner-388x220.jpg" alt="Learncodeing.blogspot.com" width="200" height="200">
Try it Yourself
We Suggest: Always Use Lowercase Attributes
The HTML5 standard does not require lower case attribute names.
The title attribute can be written with upper or lower case like Title and/or TITLE.
W3C recommends lowercase in HTML4, and demands lowercase for stricter document types like XHTML.
Lower case is the most common. Lower case is easier to type.
We Suggest: Always Quote Attribute Values
The HTML5 standard does not require quotes around attribute values.
The href attribute, demonstrated above, can be written as:
W3C recommends quotes in HTML4, and demands quotes for stricter document types like XHTML.
Using quotes are the most common. Omitting quotes can produce errors.
Sometimes it is necessary to use quotes. This will not display correctly, because it contains a space:
Single or Double Quotes?
Double style quotes are the most common in HTML, but single style can also be used.
In some situations, when the attribute value itself contains double quotes, it is necessary to use single quotes:
Example:
<p title='John "ShotGun" Nelson'>
Or vice versa:
Example:
<p title="John 'ShotGun' Nelson">
Summary of Chapter :
- All HTML elements can have attributes
- The HTML title attribute provides additional "tool-tip" information
- The HTML href attribute provides address information for links
- The HTML width and height attributes provide size information for images
- The HTML alt attribute provides text for screen readers
- At Learincodeing we always use lowercase HTML attribute names
- At Learincodeing we always quote attributes with double quotes
code examples about webdesign
ReplyDeleteCreating an Image Map in html language