Hi, what do you think about it (beginner)

Hi,

I started to code about one week ago and i would like to know what do you think about that tribute page.

https://codepen.io/mindwarp77/pen/OJXYMyq

I have some problem to made my page responsive…

It’s in French, sorry about that.

Thanks a lot for your answers. Bye.

1 Like

You’ve posted link to test suite template

Yep… thank you !

https://codepen.io/mindwarp77/pen/OJXYMyq

Think it’s better now .

Your page looks good @Mindwarp. Some things to revisit;

  • Verify your email addr with codepen so we can see your page full view
  • Codepen provides the boilerplate for you. It only expects the code you’d put within the body element in HTML. (No need to include the body tags). For anything you want to add to the <head> element click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
  • Run your HTML code through the W3C validator.
    • There are HTML coding errors you should be aware of and address.
  • Do not use internal styling. All your styling should be external.
  • Do not use the <br> element to force line breaks or spacing. That’s what CSS is for.
    • Used incorrectly in parts of your code and in other parts if you want multiple paragraphs then use multiple paragraph elements.
  • Make your page responsive. Remember, the R in RWD stands for Responsive

Hey @Mindwarp,

  • You’ve lot of errors with the <br> tag… consider checking your code in HTML validator.
  • You’ve to enter only the stuff inside body tag of html in codepen html section…
    You can add stuff for head tag in the settings…
1 Like

Nice, thanks a lot for your answers, i’ll work on it !

Hi,
Ok, my HTML page is fixed, but the CSS is wrong for me, so i started again with the flexbox.
I think it will help me to made my page responsive.