ADDRESS ELEMENT INSIDE ARTICLE
Run
<!doctype html>
    <head>
        <title>
            Address element inside Article
        </title>
    </head>
    <body>
        <article>
            <h1>What is HTML?</h1>
            <p>HTML stands for Hypertext Markup Language. It's a markup language which is used to represent content in a well formatted way rendered in the browser.</p>
            <p>We have an interactive course for HTML, available in Hindi and English here: <a href="https://www.studytonight.com/code/">HTML Interactive Course</a></p>
            <address>
                <div>Written by <a href="mailto:we@studytonight.com">Studytonight</a>.</div>
                <div>Our Instagram: 
                <a href="https://instagram.com/study.tonight">instagram.com/study.tonight</a></div>
                <div>Our YouTube Channel: <a href="https://www.youtube.com/channel/UCURY4RZois483CPY8prhx7g">
                Studytonight YouTube</a>.</div>
            </address>
        </article>
    </body>
</html>