H i everyone,
yesterday i finished the survey form in simple text, black and white, only to pass the test, today i try to improve the looks and polish a little bit, still i dont know if i did correctly the input width in case the browser resizes.
H i everyone,
yesterday i finished the survey form in simple text, black and white, only to pass the test, today i try to improve the looks and polish a little bit, still i dont know if i did correctly the input width in case the browser resizes.
Hi @frogcoin82 your page looks good. Congratulations!
Maybe I’m wrong, but the only strange thing that I found was this:
Your form looks good @frogcoin82. Some things to revisit;
body
element in the HTML editor. (No need to include the body
tags). For anything you want to add to the <head>
element click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
style
element belongs in the head
element. Review this for an understanding of the HTML boilerplate tags.<br>
element to force line breaks or spacing. That’s what CSS is for.
Hi AndyG, thanks for the feedback, at the moment the page doesnt go beyond submit.
Hi Roma, i really appreciated the feedback, it make me work more on the survey and realized that i had a lot of issues to fix.
br
to force spacing using css.I removed all the inline style but if theres something that i can still move a hint would be appreciated.
I used <br>
between inputs to break the line but i dont know if thats correct.
ill clean some code in my tribute page thanks to your feedback too.
Good job cleaning things up @frogcoin82.
You don’t want to use <br>
to force line breaks. Referenced in my post above.
Instead of using <br>
elements to have each inline element on a new line use, or set, container elements to be block-level elements so they’ll each take up the full width.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.