How to define the document’s body in HTML with example in hindi

नमस्कार दोस्तों! इस लेख में हम How to define the document’s body in HTML with example in hindi के बारे में बात करेंगे। इस लेख को पढ़ने के बाद आपको आपके सवाल How to define the document’s body in HTML with example in hindi का जवाब मिल जायेगा।

How to define the document’s body in HTML with example in hindi

किसी भी HTML document में body को define करने के लिए <body> tag का use करते है। आइये इसको एक example के माध्यम से समझने का प्रयास करते है।

How to define the document’s body in html

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

    <h1>Welcome to My Website</h1>
    <p>This is the main content of the webpage.</p>

    <!-- Adding an image -->
    <img src="https://www.example.com/image.jpg" alt="Sample Image">

    <!-- Adding a list -->
    <ul>
        <li>First item</li>
        <li>Second item</li>
        <li>Third item</li>
    </ul>

    <!-- Adding a link -->
    <p>Visit my <a href="https://www.example.com">homepage</a>.</p>

</body>
</html>

इस कोड को एक बार run करके देखे आपको समझने में आसानी होगी।

हम आशा करते है की आपको आपके सवाल How to define the document's body in HTML with example in hindi का जवाब मिल गया होगा। 

इसे भी पढ़े: 🚀

Leave a comment