HTML bootcamp · Lab 12

A cited quotation

mediumQuotations10 minLesson: Quotations

Read the question, write HTML on the right, then Preview or Check.

QuestionHint and solution stay closed until you open them

Add a <blockquote> with the text "Great coffee, every time." and a cite attribute pointing to https://example.com.

The cite attribute records where the quote came from (it is not shown on the page).

Output. A blockquote with a cite attribute.

Examples

Example 1
Expected
<blockquote cite="https://example.com">…</blockquote>
Hint
  1. Put the quoted sentence between <blockquote> tags.
  2. Add cite="https://example.com" on the opening tag.
Show correct code

Peek only after you have tried. You can still Check your own version.

<blockquote cite="https://example.com">Great coffee, every time.</blockquote>
index.htmlLive preview · Check reads the DOM
ResultIdle
Run to see output. Check grades the tests.