How to define quoted section in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
    <body>

        <p>Hypertext Markup Language (HTML)</p>
        <blockquote>
            (HTML) is the standard markup language for creating web pages and web applications.
        </blockquote>

    </body>
</html>

<!--
run:

Hypertext Markup Language (HTML)

    (HTML) is the standard markup language for creating web pages and web applications.

-->

 



answered Dec 4, 2018 by avibootz
edited Dec 4, 2018 by avibootz
...