How to add a variable in HTML?


Use the <var> tag in HTML to add a variable. The HTML <var> tag is used to format text in a document. It can include a variable in a mathematical expression.

Example

You can try to run the following code to add a variable in HTML −

<!DOCTYPE html>
<html>
   <head>
      <title>HTML var Tag</title>
   </head>
   <body>
      <p>The equations: <var>2x</var> - <var>4z</var> = <var>2y</var> + 3 and
         <var>x</var> + <var>5z</var> = <var>3y</var> + 6</p>
   </body>
</html>

Updated on: 04-Oct-2023

21K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements