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
Expected
<blockquote cite="https://example.com">…</blockquote>
Hint
- Put the quoted sentence between <blockquote> tags.
- 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.