How to define a variable in HTML?

इस लेख में हम How to define a variable in HTML? के बारे में पढ़ेंगे और जानेगे की HTML में कोई भी variable कैसे define करते है।

How to define a variable in HTML?

HTML में किसी वेरिएबल को define करने के लिए <vr> tag का use करते है। इसको समझने के लिए आइये एक example का सहारा लेते है। और समझते है की एक variable एक्चुअल में कैसे काम करता है।

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML Variable Example</title>
</head>
<body>

<p>The area of a circle is <var>A</var> = π<var>r</var><sup>2</sup>, where <var>r</var> is the radius of the circle.</p>

<p>In JavaScript, you can define a variable like this: <code>var x = 10;</code></p>

</body>
</html>

Preview

HTML Variable Example

The area of a circle is A = πr2, where r is the radius of the circle.

In JavaScript, you can define a variable like this: var x = 10;

How to define a variable in HTML?

By-Kootkot

इसे भी पढ़े🚀

https://freenotespdfdownload.in

Leave a comment