HTML BOLD TAG EXAMPLE
Run
<!doctype html>
    <head>
        <title>
            Example for Bold Text
        </title>
    </head>
    <body>
        <p>This paragraph is used to display plain and simple text.</p>
        Here we are going to use <b>the bold element</b>to display the text as <b>Bold text</b>.
    </body>
</html>