Learn HTML Forms by Building a Registration Form - Step 16

Tell us what’s happening:
Describe your issue in detail here.
Please I need help on this cos I don’t even understand it at all… Help me ASAP

   **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 /></label>
       <label>Enter Your Last Name: <input /></label>
       <label>Enter Your Email: <input /></label>
       <label>Create a New Password: <input /></label>
     </fieldset>
     <fieldset></fieldset>
     <fieldset></fieldset>
   </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 (Linux; U; Android 11; TECNO BD4j Build/RP1A.200720.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/94.0.4606.85 Mobile Safari/537.36 OPR/36.2.2254.130496

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

Link to the challenge:

Your instructions are below. I moved it here. Try to point me at the parts which are confusing. Any specific question about instructions, feel free to ask.

Specifying the type attribute of a form element is important for the browser to know what kind of data it should expect. If the type is not specified, the browser will default to text.

Give the first two input elements a type attribute of text, the third a type attribute of email, and the fourth a type attribute of password.

The email type only allows emails with a @ and a . in the domain. The password type obscures the input, and warns if the site does not use HTTPS.

Hi,
Could you please check what’s wrong with this?
I try to copy here, but does not let me to do that :frowning: or can you see the codes I have sent to you?

Enter Your First Name: Enter Your Last Name: Enter Your Email: Create a New Password:

Thanks

Hi
I suggest to create your own topic

and provide a little bit more info

link to the challenge
and code in readable fashion, Use this as example how to edit the code.

Or you can Ask for help button in the challenge step

ok, thanks, I will do, hope you will see it after I created it

everybody will see it. There are many people who can help, not just me.

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