I have completed my project: Survey form. Your suggestion and feedback are highly appreciable. https://codepen.io/isabellecrispim/pen/YzNWOPq
New version: https://codepen.io/isabellecrispim/pen/YzNWOPq.
I have completed my project: Survey form. Your suggestion and feedback are highly appreciable. https://codepen.io/isabellecrispim/pen/YzNWOPq
New version: https://codepen.io/isabellecrispim/pen/YzNWOPq.
Your page is good @IsabelleCrispim
Thanks!!! I really appreciate it.
Your form looks good @IsabelleCrispim. Some things to revisit;
Looks pretty good.
I would make the submit button a little bit larger (I know itās a Bootstrap sized button) and make its position more consistent with the rest of the layout.
Example:
<div class="row">
<div class="col d-flex justify-content-end mt-4">
<button type="submit" class=" send-btn btn btn-primary btn-lg px-4" id="submit">Send</button>
</div>
</div>
Thanks for explaining this to me! I did some modifications. Would you mind helping me with this new version? https://codepen.io/isabellecrispim/pen/YzNWOPq
Thank you for the kind feedback!
Itās looking a lot better @IsabelleCrispim. Good job cleaning things up.
One thing I noticed is you have three distinct groups of radio buttons yet the name
attribute has the same value
across the three.
Revisit this lesson and see why youād want to have different values so that each radio button group will be unique.
Note also that each of your radio buttons has ācheckedā by default but since they all share the same value
for the name attribute only one button shows as selected.
Also in each group, since they are radio buttons, only one can be selected so it will always be the last one. Is this what you want?
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.