Hey, it’s me again.
Today I finished the second project — the Survey Form. Here’s the link: https://moon-blade.github.io/fcc-survey-form/
Feedbax appreciated!
P. S. Also wanted to thank @Roma and @vjones2112 for their advice on my first project.
Hey, it’s me again.
Today I finished the second project — the Survey Form. Here’s the link: https://moon-blade.github.io/fcc-survey-form/
Feedbax appreciated!
P. S. Also wanted to thank @Roma and @vjones2112 for their advice on my first project.
Hi @moonblade!
I think your page looks good.
One suggestion you might look into is instead of using a bunch of ids here
#extra-early-label,
#early-label,
#later-early-label,
#tea-label,
#omlette-label,
#oatmeal-label {
font-size: 1.7rem;
margin: 5px;
}
maybe just create one class and apply that class to each element you want to style.
.survey-labels {
font-size: 1.7rem;
margin: 5px;
}
Thank you for your feedback and advice. I’ll take it into consideration.
Yeah, my CSS looks a little cluttered, but I’m definitely going to learn how to write code more efficiently so you write less but have the same output.