HTML Variable Formatting Code For Website - Learn About Website | DaddyFile

0

HTML <var> For Variables Explain

The HTML <var> element defines a variable.
The variable could be a variable in a mathematical expression or a variable in programming context.



Html Code:

<!DOCTYPE html>
<html>
<body>

<p>Einstein wrote: <var>E</var> = <var>m</var><var>c</var><sup>2</sup>.</p>

</body>
</html>



Html Code Result:

Einstein wrote: E = mc2.

Post a Comment

 
Top