HTML বর্ণনা বিবরণ উপাদান (The HTML Description Details element)

<dd>: HTML বর্ণনা বিবরণ উপাদান (The HTML Description Details element)। এইচটিএমএল এর এই উপাদান বা ট্যাগ এর ব্যবহার জানতে হলে আগে <dl>: HTML বর্ণনা তালিকা উপাদান (The HTML Description List element) এবং <dt>: HTML বর্ণনা শব্দের উপাদান (The HTML Description Term element) সম্পর্কে জানতে হবে। এই তিনটি ট্যাগ বা এইচটিএমএল উপাদান একে অপরের সঙ্গে জড়িত। নিচে বিস্তারিত দেওয়া হল উদাহরন সহ।

Example:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML MASTER JHUTANDA</title>
    <!--https://jhutanda.com-->
    <!--https://github.com/jhutanda-->
</head>

<body>
    <h1>Head</h1>
    <!-- <dl></dl> The HTML (Description List) element -->
    <dl>
        <!-- <dt></dt> The HTML (Description Term) element -->
        <dt>Tv</dt>
        <!-- <dd></dd> The HTML Description Details element. -->
        <dd>TV full form Television. Television, often abbreviated as TV, is a widely used electronic communication
            medium that allows for the transmission of audio and visual content to a wide audience. It involves the
            broadcasting or displaying of moving images (usually referred to as video) along with sound, making it a
            powerful tool for entertainment, news dissemination, education, and communication.
        </dd>
        <!-- <dt></dt> The HTML (Description Term) element -->
        <dt>Mobile</dt>
        <!-- <dd></dd> The HTML (Description Details) element. -->
        <dd>A mobile, short for mobile phone or cellphone, is a portable electronic device used primarily for voice
            communication. It incorporates wireless technology to connect to cellular networks, enabling users to make
            and receive calls from almost anywhere. Beyond voice calls, modern mobiles offer text messaging, internet
            access, and a wide range of applications, transforming them into versatile personal devices. </dd>
    </dl>
</body>

</html>

Scroll to Top