C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
HTML <var> tagHTML <var> tag is a phrase tag which is used to define the variable for a mathematical equation, or in the programming context. The content within <var> tag renders in italic font in most of the browsers, but it can be overridden using appropriate CSS. Following are some related elements of <var> tag, which can also be used for the same context:
Syntax<var>........</var> Following are some specifications about the HTML <var> tag
Example<!DOCTYPE html> <html> <head> <title>HTML var tag</title> </head> <body> <h2>Example of var tag</h2> <p>Following is equation for distributive law</p> <p><var>a</var>(<var>b</var>+<var>c</var>)=<var>ab</var>+<var>ac</var></p> </body> </html> Output: Attribute:Tag-specific attributes:The <var> tag does not contain any specific attribute in HTML. Global attribute:The <var> tag supports the Global attributes in HTML. Event attribute:The <var> tag supports the Event attributes in HTML. Supporting Browsers
Next TopicHTML video Tag
|