Give some feedback on my tribute page

Hey everyone, I just finished my first tribute page. I know it’s not perfect but I would like some feedback from you more experienced guys. I think I didn’t quite get the indentation right, and also there seemed to be a problem with bootstrap for me. I either didn’t add the library properly or I’m not sure. There is a longer comment where the problem is. Also, is there a problem if I didn’t add a head and started directly with a div tag? Thank you.

Here is the link: https://codepen.io/andy_bruja/pen/eVzZQZ

Hello @andy_bruja,

How to use Bootstrap with codepen:

https://www.youtube.com/watch?v=hiCK6-8XfiA

HTML

  • error

End tag “br”.

From line 12 to line 12:

    </br> Henry

MDN documentation:
<br>: The Line Break element - HTML: HyperText Markup Language | MDN

Tag omission:
Must have a start tag, and must not have an end tag. In XHTML documents, write this element as <br />.


----
  • error

The “align” attribute on the “div” element is obsolete. Use CSS instead.

From line 15 to line 15:

</h1>
    <div id="image" align="center" class="container-fluid">  
   
  • The ‘align’ attribute is no longer valid on the <div> element and should not be used.

MDN documentation:

<div>: The Content Division element - HTML: HyperText Markup Language | MDN

Attributes

The align attribute is obsolete; do not use it anymore.


----
  • error

Unclosed element “h4”.

From line 34 to line 34:

    <h4 class="parag" style="text-align:justify;">During

cheers and happy codding :slight_smile: