https://codepen.io/Taity/pen/oNjXaGJ

https://codepen.io/Taity/pen/oNjXaGJ

Hey, guys please can you give me any constructive feedback (especially on how I can make it better and do better on the next projects ) on my tribute page, this is the first time I have ever tried to make a website thanks.

Looks good!

What I would do is, discard the “img-caption { position: center; }” and align the text of the body, what this will do is align the whole page, which in my opinion makes it look aesthetically nicer.

You could also increase the size of titles, to add structure, and also make things like the quote 5 pixels bigger so it’s more readable.

Let me work on that , Thanks!

Your page looks good @Taity045 but you use the body element incorrectly.

  • The image, the quote, the main and footer elements all should be inside the body element.
  • The link to the stylesheet belongs in the head element.
  • Here’s a sample template found just doing a Google search for ‘html boilerplate template’
  • Now with all that being said, when using codepen it provides the boilerplate template for you and only expects the code you’d put within the <body> </body> tags in HTML. (No need to include the body tags). For anything you want to add to <head> click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
  • The img tag is self closing…</img> is not valid

okay , i understand , will revisit my project and implement that , will do that for the next projects as well thank you.