Tribute Page- Miyamoto Musashi

Hi all,

I’m redoing the challenges from stratch. Took a long break off, but will get through the entire program.

Looking at other people’s tribute pages, it looks like they put they’re own design on the tribute page. I was under the impression that we were supposed to try to backwards engineer our own tribute page from the example provided. Is this not the case?

In any case, my tribute page is attached below. Feedback would be much appreciated.

Pretty well done. You just need to change width into #tribute-date from width: 700px; to max-width: 700px; to let the text accommodate also on smaller screens.

Also you have an extra > in <html lang="en">>

Hello @fffear,

HTML

  • error

Element “head” is missing a required instance of child element “title”.
(the problem is the extra >)

line 2:

<html lang="en">>


  • error

Stray start tag “head”.
(side effect of the error in line 2)

From line 3 to line 3:

  <head>


  • error

Element “title” not allowed as child of element “body” in this context. (Suppressing further errors from this subtree.) (side effect of the error in line 2)

From line 4 to line 4:

    <title>Tribute to Miyamoto Musashi</title>

  • error

Internal encoding declaration named an unsupported chararacter encoding “ytf-8”.

From line 5 to line 5:

    <meta charset="ytf-8">


  • error

Attribute “charset” not allowed on element “meta” at this point.
(side effect of the error in line 2)

From line 5 to line 5:

    <meta charset="ytf-8">


  • error

The only allowed value for the “charset” attribute for the “meta” element is “utf-8”.

From line 5 to line 5:

    <meta charset="ytf-8">

  • error

Stray end tag “head”.
(side effect of the error in line 2)

From line 7 to line 7:

  </head>

  • error

Unclosed element “ul”.

From line 25 to line 25:

<ul>


  • error

End tag “div” seen, but there were open elements.
(side effect of the error in line 25)

From line 41 to line 41:

  </div>


  • error

End tag for “body” seen, but there were unclosed elements.

From line 48 to line 48:

  </body>


  • error

Saw an end tag after “body” had been closed.

From line 49 to line 49:

  </div>


  • error

End tag for “html” seen, but there were unclosed elements.

From line 50 to line 50:

  </html>

cheers and happy codding :slight_smile:

Note:
Tools used:
w3c markdown checker web service

Video:

Hi @Diego_Perez and @sorinr, thanks for the feedback.

Updated tribute page.

The HTML checker service will really come in handy. :slight_smile:

1 Like