Here is my first project, feedback is welcomed

Hi,
FCC community, here is my first project, a tribute to the G.O.A.T. Please give any feedback.


Thanks

@ccasey1906 Looks good. Typically, your HTML markup should be like this:

<html>
  <head>
    <title></title>
  </head>
  <body>
  </body>
</html>

So, in your tribute page, all of the current code should be within your <body> elements.

I prefer to use the HTML5 video element (<video>) instead of <iframe>. Here’s info about that:

http://html5doctor.com/the-video-element/

Lastly, and I don’t know if FCC mentions this or not, but you’ll want to avoid using HTML style elements like <b>, <em> and <center> in your HTML. This is known as Separation of Concerns: https://www.thoughtco.com/avoid-inline-styles-for-css-3466846.

Hope that helps!