Hi everyone again, after my first post where I asked for some advice about my first time trying FlexBox, I’m here again but this time with my first project asking for a review.
Here’s the link: https://codepen.io/zeRydev/pen/yLJmvWP
I think that I successfully implemented mobile responsive design, or maybe not successfully? On my phone it looks pretty much what I expected. What do you guys think?
Thank you.
Your page looks good @zerydev. Some things to revisit;
- Codepen provides the boilerplate for you. It only expects the code you’d put within the
body
element in HTML. (No need to include thebody
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.- The link to the font goes in the box labeled ‘Stuff for <head>’
- Run your HTML code through the W3C validator.
- There are HTML coding errors you should be aware of and address.
- Do not use the
<br>
element to force line breaks or spacing. That’s what CSS is for.
1 Like