এইচটিএমএল টেক্সট বোল্ড (The HTML text in bold)

<b>: এইচটিএমএল টেক্সট বোল্ড (The HTML text in bold) ট্যাগ কিংবা এলেমেন্ট টি সাধারনত কোন লেখাকে মোটা করতে বা বোল্ড করতে ব্যবহার হয়।

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>Heading</h1>
    <!--Example: 1-->
    <p>Lorem ipsum dolor <b>BOLD</b> sit amet consectetur adipisicing elit. Reprehenderit, aut.</p>
    <!--Example: 2-->
    <!--You can use css to style it-->
    <p>Lorem ipsum dolor <b style="color:red;"><u>BOLD</u></b> sit amet consectetur adipisicing elit. Reprehenderit,
        aut.</p>

    <!--Example: 3 use extra css to design the b tag style-->
    <p>Lorem ipsum dolor <b class="style">BOLD</b> sit amet consectetur adipisicing elit. Reprehenderit, aut.</p>

    <!--css text start-->
    <style>
        .style {
            color: red;
            text-decoration: underline;
        }
    </style>
</body>

</html>
Scroll to Top