HTML - Blockquotes

Blockquotes:

  • The Blockquote <blockquote> tag defines the content from another source with indentation.
  • The Blockquote will have a line break before and after the content by default.
  • URL of the source content can be given using the cite attribute and text representation can be given using the <cite> element.
  • For Short or Inline quotes, we can use the <q> tag.

    <!--blockquote Tag starts here -->

    <blockquote cite="www.geek4tutorial.com">
        Geek4tutorial: Front End Web Developement Courses
    </blockquote>

    <!--blockquote Tag ends here -->


No comments:

Post a Comment

You might also like

Deploy your Django web app to Azure Web App using App Service - F1 free plan

In this post, we will look at how we can deploy our Django app using the Microsoft Azure app service - a free plan. You need an Azure accoun...