Project Survey Form

Hello everyone, please check and provide me feedback for my project. https://codepen.io/abidemi1/pen/ExWOPJR

Hi @Abidemi1 !

I think your page looks good.

A few things.

Make sure to keep the test suite in the page.

<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>

Right now you are passing 14/17 tests.

I think you should add the cursor pointer to the submit and reset buttons.

For the placeholder text, you might consider changing it to reflect the correct format that you want users follow.

For example:

I wouldn’t use br tags like this.

   <br />
   <br />

Use css instead when you want to create space between elements.

You have a few small issues with duplicate ids in your html.

Run your code through the html validator to help you catch and fix errors.

Hope that helps!

Your work is generally clean. Congratulations!

However, you must increase the size of the width of your “Submit” and “Reset” buttons to contain the word.

Know that you have the full width. I suggest a simple writing of the code:

submit {
  width: 45%;   
  height: 25px;
  position: relative;
}
#reset {
  width: 50%; 
  height: 25px;
  position: relative;

There should be an option “None of the above” :slight_smile:

@angeniandre thank you

@jwilkins.oboe thank you i will have that in mind

@Sibert lol ok i will add that too

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