The <a> element (or 'anchor') is used to create hyperlinks.
Its required attribute, href (Hypertext Reference) points to the resource that is linked
The <abbr> element is used to define an abbreviation
Its required attribute, title creates a pop-up that displays when the user hovers the mouse over the abbreviation
The <address> element defines contact information for the author/owner of a document
Its required attribute, title creates a pop-up that displays when the user hovers the mouse over the abbreviation
The <article> element defines contact information for the author/owner of a document
<article> is an HTML 5 semantic element that is used to create a block of content (like a <div>) that can stand by itself apart from the page's other content
The <aside> element defines contact information for the author/owner of a document
<aside> is an HTML 5 semantic element that is used to create a block of content (like a <div>) that can stand by itself apart from the page's other content
The <audio> element defines sound, such as music or other audio streams. Currently, there are 3 supported file formats for the <audio> element: MP3, WAV, and OGG
The <audio> element includes several attributes that provide alternatives to the video display, including
Attribute | Description |
---|---|
autoplay | Specifies that the audio will start playing as soon as it is ready |
controls | Specifies that audio controls should be displayed (such as a play/pause button etc) |
loop | Specifies that the audio will start over again, every time it is finished |
muted | Specifies that the audio output of the audio should be muted |
preload | Specifies if and how the author thinks the audio should be loaded when the page loads |
src | Specifies the URL of the audio file |