Check this out guys

Tell us what’s happening:

hello guys check this out and tell me if there is any where i made a mistake that need to be corrected.

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36.

Challenge: Build a Survey Form

Link to the challenge:

Your form looks okay @greatereze3 but I’d suggest doing something original. Start from a blank page and create your own form.
Looking at your HTML code and comparing it to the FCC sample form I see minor differences in some of the class names. The rest of the HTML is the same. And there’s a couple of differences in the text that displays.

Some other notes when you do another form;

  • 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.
    • You have elements out of order. Everything the browser renders belongs in the body element.
  • Don’t use <br> to force line breaks or spacing. That’s what CSS is for.
  • Change the cursor to a pointer when hovering over the submit button.