Hello everyone! I just complete my first project. I would like any feedback about my work.
https://codepen.io/afranio/full/YzXVGxW
Thanks!
Hello everyone! I just complete my first project. I would like any feedback about my work.
https://codepen.io/afranio/full/YzXVGxW
Thanks!
Welcome to the forums @Afranio. Your page looks good. Just a couple of things to revisit;
<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.
Welcome to the forum @Afranio
Iâve got to admit, I really like this layout. Super awesome job on the responsive design. A little jealous that I canât make anything that looks as good as this!
When I shrink the width of my screen I notice that the books arenât lined up centrally like the footer is and it kind of gets to me. Hopefully you can see what Iâm talking about here:
@Roma, Thank you a lot by all topics.
On using codepen. 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 <head>
click on the âSettingsâ button, then HTML and add it into the âStuff for â box.
Done!
The link to your font would go in the box labeled âStuff for â
Done!
Run your HTML code through the W3C validator. Just copy your HTML and paste it into the âValidate by Direct Inputâ tab.
Done!
A lot of the same warnings. Side note, all your styling should be external. Donât use in-line styling.
Done!
There are a few accessibility warnings you should look into too.
Done!
Review the lesson about giving meaningful text to links
Done!
âGoodreadsâ isnât accessible
Done! (I removed the script and put âby handâ all referencial link --painful!)
Hello @caleb-mabry,
Thank you by this nice observation. I tried fix putting min-width: 400px;
into containerâs grid of the books. CSS is very painful to me, I spend a lot of time to try align, adjust or justifying anything. I hope that this solution satisfies your observation.
Great job!
Your choice of fonts and colors immediately convey the context of your page. Thatâs a great UI/UX asset.
Adding the colorful palate of small images is one the main thing that makes your page pretty unique and sophisticated so good job on that. Center Aligning the content is also always a plus.
Good luck on future projects and keep up the good work
Iâm pretty sure CSS will always be a battle! Keep it up though. Great work
Nice job! I see some of the things done but not all.
One thing, the script should stay in the HTML section. Itâs a JS script and it would normally be placed right before the closing body
tag. Itâs not something that would go into head
.
For codepen purposes it doesnât matter if you put it at the top of the HTML section or at the bottom.
@Roma, Thanks for reply!
If I understand well, would be like this:
<html>
<head>...</head>
<body>
.
.
.
<script>...</script>
</body>
</html>
I put the CDN into JS
> Add External Scripts/Pens
, is this right? Or for best practice I should put CDN into <script></script>
?
The picture is correct