Learn HTML Forms by Building a Registration Form - Step 17

Hi all,

Just a bit stuck on this challenge, as I have tried many ways of solving this question. It is asking me to put an input element with type and value of submit.

I have done this many times and still no look, any tips of pointers please and I would greatly appreciate it.

Many Thanks

   **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
 <head>
   <title>Registration Form</title>
	  <link rel="stylesheet" href="styles.css" />
 </head>
 <body>
   <h1>Registration Form</h1>
   <p>Please fill out this form with the required information</p>
   <form action='https://register-demo.freecodecamp.org'>
     <fieldset>
       <label>Enter Your First Name: <input type="text" /></label>
       <label>Enter Your Last Name: <input type="text" /></label>
       <label>Enter Your Email: <input type="email" /></label>
       <label>Create a New Password: <input type="password" /></label>
     </fieldset>
     <fieldset></fieldset>
     <fieldset></fieldset>
     <input type="submit" value="submit">

   </form>
 </body>
</html>
/* file: styles.css */
body {
 width: 100%;
 height: 100vh;
 margin: 0;
 background-color: #1b1b32;
	color: #f5f6f7;
}

label {
	display: block;
	margin: 0.5rem 0;
}

   **Your browser information:**

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

Challenge: Learn HTML Forms by Building a Registration Form - Step 17

Link to the challenge:

pay close attention to capitalizations

Hi,

I know, that’s the only problem with coding. I am still new to coding and still trying to pick up the tricks of the trade. You mainly use capitals in the text such as in p elements.

see the instructions in what case they want the button appear on the page, look at the preview pane also does the button appears with text as the instructions ask you

Oh you mean look at the index page?

do you see the preview of your code in the same page in which you are typing code ?

Yes, I see the preview button.

ok great, so you should match the caption on button with what the instructions ask you, with spelling as well the case

Thank you for all your help today, I’ve only just realized why I was still getting it wrong after all this time. I think that reading is hard and I can’t tell what is a capital letter or a lower case letter.

Once again I appreciate your help today and thankful for the support you have given me to walk me through this step.

it’s great you solved it, it was so easy solve it but I wanted you to figure out yourself :smiley:

I agree, I just couldn’t believe why I didn’t spot it earlier. Something is telling me to go to Specsavers for glasses. As reading is hard and I need this skill to do my work as a future web developer.

good point :smiley: it will prevent you from many hassles, you will think about the problem right way from the start, Clever! You will be great programmer someday. And I have seen from your messages that you are very nice too, Thank you. Happy coding :laughing:

Thank you for your kind messages, I will try to be the best web developer I can be for not only myself but also for the company i will be working for.

Happy coding.

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