blockquote HTML:Â Main Tips
- The
<blockquote>
HTML element indicates that content is a quotation. - When a quotation is inside the rest of the text, use the <q> element.
- You should apply the
<blockquote>
HTML element when it is necessary to separate a quote from the remaining text.
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
Usage of blockquote
A block quote HTML is a defined area, displaying a quote separately from the rest of the content.
<p>There are many ways to gain knowledge: TV, books, Internet, etc. However, imagination starts to fade after childhood. Do not let your inner child fade!</p>
<blockquote>Imagination is more important than knowledge.</blockquote>
You can add the URL source of the quotation by using the cite
attribute. If a text specifies the source, use the <cite> as an element, not attribute.
The following block quote example shows the use of cite
attribute:
<blockquote cite="https://www.bitdegree.org/">The best way to learn programming while gaming.</blockquote>
In the next block quote example, we style the <blockquote>
HTML:
<blockquote style="background-color: pink; border-width: 3px; border-style: solid;">Imagination is more important than knowledge.</blockquote>
Note: the opening <blockquote> tag must have a closing tag.