Well done on finishing the 2nd exercise in the HTML Introduction module. I’m afraid it doesn’t format very well when pasted into the Discourse thread; in future, you would be advised to provide a link to an online version.
In the meantime, you can check your work again our marking guide:
# Marking guide for "Structuring a page of content"
The following guide outlines a marking guide for the MDN Learning Area HTML Topic — [Structuring a page of content](https://developer.mozilla.org/en-US/Learn/HTML/Introduction_to_HTML/Structuring_a_page_of_content). Each subtask detailed in the assessment is listed below, along with an explanation of how many marks the task is worth.
Note: These are guidelines, not set in stone rules — you are of course free to use your judgement on mark awarding when you meet an edge case, or something that isn't clearly cut.
The overall mark awarded is out of 30. Work out their final mark, and then divide by 30 and multiply by 100 to give a percentage mark. For reference, you can find a [finished marked up page](index.html) that would be awarded top marks.
## Block/structural semantics
<dl>
<dt>The header (4 marks.)</dt>
<dd>They need to wrap the <code><h1></code>, first <code><img></code> and whole of the <code><ul></code> in a <code><header></code> element.</dd>
<dt>The navigation menu (4 marks.)</dt>
<dd>They need to wrap the <code><ul></code> in a <code><nav></code> element.</dd>
<dt>The main content (4 marks.)</dt>
<dd>They need to wrap both <code><h2></code>s, the first two <code><p></code>s and the last four <code><img></code>s in a <code><main></code> element.</dd>
<dt>The welcome text (4 marks.)</dt>
<dd>They need to wrap the first <code><h2></code> and the first two <code><p></code>s in an <code><article></code> element or a <code><section></code> element.</dd>
<dt>The image sidebar (4 marks.)</dt>
This file has been truncated. show original
And our finished example:
https://mdn.github.io/learning-area/html/introduction-to-html/structuring-a-page-of-content-finished/