HTML বিষয়বস্তু বিভাগ উপাদান (The HTML Content Division element)

<div>: HTML বিষয়বস্তু বিভাগ উপাদান (The HTML Content Division element)। এইচটিএমএল এর এই উপাদান দ্বারা কোন পেজ কে বিভিন্ন ভাগে ভাগ করতে পারি। অর্থাৎ একটি পেজ কে বিভিন্ন অংশে ভাগ করে উক্ত স্থানে আমার বিষয়বস্তু স্থাপন করতে পারি। নিচে HTML বিষয়বস্তু বিভাগ উপাদান (The HTML Content Division 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>

    <div class="div1">
        <h3>Div example </h3>
    </div>
    <br>
    <div class="div2">
        <h3>Div example </h3>
        <div class="child">
            child
            <div class="grant-child">Grant Child</div>
        </div>
        <div class="child">
            child
            <div class="grant-child">Grant Child</div>
        </div>
    </div>

    <style>
        .div1 {
            background-color: yellow;
            padding: 10px;
        }

        .div2 {
            background-color: red;
            padding: 10px;
        }

        .child {
            background-color: orange;
            padding: 10px;
        }

        .grant-child {
            background-color: magenta;
            padding: 10px;
        }
    </style>
</body>

</html>

Scroll to Top