Finished Tribute Page and Survey Form

I don’t want to spend too much time on these. I found the alignment with flexbox for Survey Form quite difficult so I just did what I knew. Have a look.

https://disciple87.github.io/TributeApostlePaul/
https://disciple87.github.io/Survey-Form/.

1 Like

Congratulations on finishing these!

For the form labels it’s generally recommended to make them clickable. You can read about that here: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label

Thanks I updated my labels so they are clickable, is there any easy way to align my checkboxes horizontally.

Welcome. You can add:

label {
    display: inline-block;
}
1 Like