Any tips and feedback would be hugely appreciated
I am fairly new to coding so am trying to learn as much as possible.
Thanks,
Andrej
Here is the link to the code: https://codepen.io/drdre5/pen/OJyzZBW
Any tips and feedback would be hugely appreciated
I am fairly new to coding so am trying to learn as much as possible.
Thanks,
Andrej
Here is the link to the code: https://codepen.io/drdre5/pen/OJyzZBW
Love the colors and it looks really nice.
I would add some padding at the very top and the bottom. The footer should be glued to the bottom as you did it, but it would look better if there was a bit of space between letters and the edge of the website.
Did you want to have list bullets? Because on the bigger screens they are visible in front of the table, not as a part of the table.
It also doesnāt look so nice on small devices: the table doesnāt look nice as well as the quote.
You can easily check if it looks okey, when you choose editor layout with code on the left and ouput on the right. You can make the editor wider and then you can see how your website would look like on smaller screens.
Ok thank you so much for your help and feedback!!!
Your page looks good @andrejjj222. Some things you should revisit;
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
).
<br>
to force spacing. Use margin and/or padding in CSS.Ok thank you thatās a very thorough response and very helpful. I am just confused about a few things.
head
is missing a required instance of child element title
?Thanks,
Andrej
Thatās not what accessible means. Read the provided article.
Because codepen provides the boilerplate for you and all it expects is the code youād put in the body
element. If you want to add the title
element in codepen then click on the āSettingsā button, then HTML and add it into the āStuff for <head>ā box.
You can read codepenās official documentation
The easiest way to see if your page is responsive is to grab the right side and drag it to the left, narrowing it. If you see things fall out of their containers you know itās not responsive.
Use Developer Tools in Chrome. Firefox has tools. Iām not good at describing how to access them (plus itās a lot to type) so itās best if you use Google. Youāll learn how to access and use them.