HTML <var> Tag
It is a phrase tag and used to specify the variable in a mathematical equation or in a computer program. The content of this tag is displayed in an italic format in most browsers.
Syntax:
<var> Contents... </var>
Example:
HTML
<!DOCTYPE html> < html > < body > < h1 >GeeksForGeeks</ h1 > < h2 >< var > Tag</ h2 > <!-- HTML var Tag is used here--> < var >GeeksforGeeks Variable</ var > </ body > </ html > |
Output:
Supported Browsers:
- Google Chrome
- Edge 12 and above
- Internet Explorer
- Firefox 1 and above
- Opera
- Safari
Please Login to comment...