Tribute page feedback for Adam Smith page

Just finished my tribute page, would love to hear any feedback! Many thanks

Hi @joecarlowittosi,

HTML inspector:

  • A bug :bug: : The </li> is affecting the rest of the page:
    • The <span> element cannot be a child of the <ul> element.
 </li><span class="firstword">Legacy,</span> In light of the arguments put forward by Smith and other economic theorists, ...</li>

MDN documentation:
<ul>: The Unordered List element - HTML: HyperText Markup Language | MDN

Permitted content: zero or more <li> elements, which in turn often contain nested <ol> or <ul> elements.

Cheers and happy coding :slight_smile:

Many thanks for takingthe time andoffering your help, I will find another way to bold the first word!

@joecarlowittosi sorry, I should have been clearer with my answer:

The problem is the </li> element.

(The error with the <span> is only the effect, I use it like an example [that is the reason because is nested inside])

Cheers and happy coding :slight_smile: