Loading…
Everything will be ready in few seconds
- Theory
- Theory
- Comments
The blockquote tag, which is used for calling out quotes
We added the entry and quoted the whole poem. And this is not just some short quote that is contained within a paragraph, so the <q>
tag will not help.
The <blockquote>
tag is intended to highlight long quotes, which may consist of several paragraphs. It highlights a quote not simply as a segment of text within a sentence. Rather, it formats the quote as a separate block of text with indents.
Just like <q>
, <blockquote>
may have an attribute cite
containing a link to the source of the quote. And you can use the <cite>
tag together with <blockquote>
. The former is usually placed inside the quote. Example:
<blockquote>
<p>Intelligence is highly valued when power is held cheap.</p>
<cite>Jason Statham</cite>
</blockquote>
Horizontal margins are usually added to the <blockquote>
tag by the browser.
We added several styles (margins, frame and text color) so that the contents of the <blockquote>
tag would look prettier. You can explore the styles in the style.css
tab.
- day-7.html
- style.css
Thanks! We’ll fix everything at once!
The code has changed, click “Refresh” or turn autorun on.
You’ve gone to a different page
Click inside the mini-browser to shift the focus onto this window.
Comments