Hi guys! I’ve just completed my very first coding project. Constructive feedback would be greatly appreciated. I would love tips and tricks for future projects and how I could improve this code and overall skills. Getting the page to respond was a struggle.
Very nice!!! I really liked the yellowish color scheme.
I just felt that the image is a bit too overwhelming. Setting a small bottom margin for said image and maybe giving it borders could also improve the layout.
Hi @myllixn, welcome to the forums. Your page looks good. Some things you may want to revisit;
codepen 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 the <head> click on the ‘Settings’ button and add it into the ‘Stuff for <head>’ box.
The link to your font would go in the box labeled ‘Stuff for <head>’
codepen provides validators for HTML, CSS and JS. Click on the down arrow in the upper right of each section and then click on the respective ‘Analyze’ link.
You have some issues in HTML that you should clean up.
try to not use the <br> element to induce spacing. For instance, between your header and your image. Use margin and/or padding in CSS instead.
Thanks for the advice Jonatas! I made the image width smaller and I’m probably going to add a thin border around it and the caption. I appreciate the feedback