HTML bootcamp · Lab 08

Semantic article

mediumSemantics12 minLesson: Semantics

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

QuestionHint and solution stay closed until you open them

Wrap the heading and paragraph in an article. h1 Special, p Free refill today.

Examples

Example 1
Expected
article > h1 Special, p Free refill today
Hint
  1. <article> is a landmark. Put h1 and p inside it.
Show correct code

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

<article>
  <h1>Special</h1>
  <p>Free refill today.</p>
</article>
index.htmlLive preview · Check reads the DOM
ResultIdle
Run to see output. Check grades the tests.