Att Global Title
## HTML title Global Attribute
The `title` attribute is an HTML global attribute that specifies extra information about an element. This information is most commonly displayed as a "tooltip" pop-up when a user hovers their mouse pointer over the element.
---
## Browser Support
The `title` attribute is fully supported by all major modern web browsers:
* Google Chrome
* Mozilla Firefox
* Microsoft Edge / Internet Explorer
* Safari
* Opera
---
## Definition and Usage
The `title` attribute provides advisory information about the element to which it belongs.
* **Visual Presentation:** In desktop browsers, the value of the `title` attribute is typically rendered as a small tooltip that appears when the cursor hovers over the element for a brief moment.
* **Global Nature:** As a global attribute, it can be used on any valid HTML5 element.
### Differences Between HTML 4.01 and HTML5
* **HTML5:** The `title` attribute can be used on **any** HTML element (it will pass validation on all elements, though it may not always be semantically useful).
* **HTML 4.01:** The `title` attribute could **not** be used with the following elements: ` `, ``, ``, ``, ``, `
YouTip