# Assessment wanted for "Structuring a page of content"

**URL:** https://discourse.mozilla.org/t/assessment-wanted-for-structuring-a-page-of-content/53795
**Category:** Learn
**Tags:** learning
**Created:** [February 12, 2020, 5:02am UTC](https://discourse.mozilla.org/t/assessment-wanted-for-structuring-a-page-of-content/53795 "2020-02-12T05:02:20Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Bejn-29](https://avatars.discourse-cdn.com/v4/letter/b/e19b73/32.png) [@Bejn-29](https://discourse.mozilla.org/u/Bejn-29)
#### Post date: [February 12, 2020, 5:02am UTC](https://discourse.mozilla.org/t/assessment-wanted-for-structuring-a-page-of-content/53795/1 "2020-02-12T05:02:20Z")

</div>

Hello,  
I am new to HTML and I am trying to complete the “Structuring a page of content” assessment. While debugging my code ( here is the [link](https://codepen.io/james011/pen/KKpdgrB) to my work), I faced the following two errors:

- ![errors](https://us1.discourse-cdn.com/flex001/uploads/mozilla/original/3X/b/6/b65890244ae14e60f2d9544ecafb45e7076219cb.png)

Searching through google got me no solution. Any guidance is kindly appreciated!

---

<div class="post-metadata">

### Author: ![chrisdavidmills](https://sea1.discourse-cdn.com/flex001/user_avatar/discourse.mozilla.org/chrisdavidmills/32/21688_2.png) [@chrisdavidmills](https://discourse.mozilla.org/u/chrisdavidmills)
#### Post date: [February 13, 2020, 12:59pm UTC](https://discourse.mozilla.org/t/assessment-wanted-for-structuring-a-page-of-content/53795/2 "2020-02-13T12:59:42Z")

</div>

Hi @Bejn-29,

Thanks for getting in touch.

So first of all, bearing mind that the results you get from the W3C HTML validator are not necessarily real problems (although some are). Often your page will run OK with some validation errors present, although you should try to fix any that you can.

It is still a useful guide however, which can help in finding errors.

In this case, your first error is complaining that the “|” character us being used in the URL inside the Google Fonts `<link>` element, and that isn’t allowed. Well, this is the way Google decide to write their code. It’s invalid, but it works.

For the second error, it says you have an element `<dev>` on your page, which isn’t allowed as a direct child of `<header>`. I’m assuming that this is a typo, and you meant to write `<div>`? I reckon that shold clear up that error.
