Forum Page- Any feedback appreciated

Hi. Would appreciate any feedback on my new project.

Also having an issue with why in the last text box the text writing starts anywhere but in the beggining, help with this if possible.

My Code

Your form looks good @vanewu88 . Some things to revisit;

  • Codepen provides the boilerplate for you. It only expects the code you’d put within the body element in HTML. (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.
    • Mentioning because everything the browser renders belongs withing the body element. You have a closing div outside.
  • Run your HTML code through the W3C validator.
    • There are HTML coding errors you should be aware of and address.
    • Since copy/paste from codepen you can ignore the first warning and first two errors.
  • Make your page responsive. Remember, the R in RWD stands for Responsive
    • There’s a horizontal scrollbar on smaller screens

The issue with <textarea> is that anything you write between the opening and closing tags will be inserted into it. Your current textarea is this - I’ll mark the spaces that you’re accidentally inserting with % characters:

    <textarea
              id="textA"
              class= "textAr"
              name="comment"
              placeholder= "Anything else you wanna share?">%%%%%%%
%%%%%%%%</textarea>

Thank you for the feedback!!!

Ohhhh thank you so much! I almost went crazy with that :joy:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.