I finally could finish the firsts lessons
here are the first attempt for the projects
tribute page
https://codepen.io/franciscomelov/full/GaKzxw
survey form
https://codepen.io/franciscomelov/full/dEybaK
thank you for your time
I finally could finish the firsts lessons
here are the first attempt for the projects
tribute page
https://codepen.io/franciscomelov/full/GaKzxw
survey form
https://codepen.io/franciscomelov/full/dEybaK
thank you for your time
Good work on these!
A couple of quick comments on some of your code. You do not need to wrap your labels and input in their own divs. Make sure to use semantic HTML5 tags whenever possible as this helps with accessibility. For instance:
Your code: <div class="labels"><label id="name-label" for="name">Name:</label></div>
Could change to: <label id='name-label' class='labels' for='name'>Name:</label>
You can then style the labels and inputs in CSS to be block elements if you wish, you don’t need a div wrapper for that
Along the same lines, try to refrain from using <br>
tags for spacing. Instead, you should use margin or padding styling in CSS.
Hey @franciscomelov
First for all great job you completed the projects.
Tribute page
*::before and *::after
so that the CSS reset can work of them also if you will be applying pseudo selectors ::before and ::after
in your project.Survey form
Apart from this, everything is good. Keep going on. You will improve eventually.
If possible, please edit your previous message because tribute page leads to the survey project and vice versa.
That’s all from me. Happy Coding:)