DD TAG EXAMPLE
Run
<!DOCTYPE html>
    <head>
        <title>
            Example of dd tag
        </title>
    </head>
    <body>
        <p>We use dl, dt and dd tag to create a description list:</p>
        
        <dl>
            <dt><b>HTML</b></dt>
            <dd>Used to create static Web Pages</dd>
            <dt><b>CSS</b></dt>
            <dd>Used for designing a Web Page</dd>
            <dt><b>Bootstrap</b></dt>
            <dd>Bootstrap is a free and open-source CSS framework directed at responsive, mobile-first front-end web development.</dd>
        </dl>
    </body>
</html>