Tribute page feedback please. And thank you

This is it. Please give feedback and let me know if you have suggestions on how to better organize the html and/or css. Thanks again.

Hi @veeteeran ,

HTML inspector:

  • The <div> element cannot be a child of the <ul> element:
<ul>
...
    <div class="italics">
...

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

Permitted content
zero or more <li> elements, eventually mixed with <ol> and <ul> elements.

Cheers and happy coding :slight_smile:

@Diego_Perez Thanks for the suggestion. I surrounded the nested the uuorderd lists inside the div instead of the other way around.

1 Like