class="post-template-default single single-post postid-875 single-format-standard wp-custom-logo wp-embed-responsive right-sidebar nav-float-right separate-containers header-aligned-left dropdown-hover featured-image-active" itemtype="https://schema.org/Blog" itemscope>

How to define subscripted text? explain in hindi

इस आर्टिकल में हम किसी भी text को subscripted form में HTML के मदद से लिखना सीखेंगे।

How to define subscripted text? explain in hindi

इसे समझने के लिए निचे दिए code को देखे इसमें हमने आपको अच्छे से बताया है।

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Subscript Example</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 20px;
        }
        h1 {
            color: #333;
        }
        p {
            font-size: 16px;
        }
    </style>
</head>
<body>

    <h1>Subscripted Text Example</h1>
    <p>Water is represented as H<sub>2</sub>O.</p>
    <p>Carbon Dioxide is represented as CO<sub>2</sub>.</p>
    <p>The formula for glucose is C<sub>6</sub>H<sub>12</sub>O<sub>6</sub>.</p>

</body>
</html>

Subscripted text का उपयोग

इसका use रासायनिक समीकरण को लिखने के लिए किया जाता है जैसे की H2O , गणित के समीकरण जैसे x² को लिखने के लिए इसका use किया जाता है।

इसका use किसी भी text को अधिक स्पस्ट और व्यवस्थित करने के लिए किया जाता है।

By- Code Step By Step

आशा करते है आपको आपके सवाल How to define subscripted text? explain in hindi का जवाब मिल गया होगा

सबसे ज्यादा पढ़ा जाने वाला blogpost 👇🏻

Leave a comment