Build Survey Form- Submit button help needed

Tell us what’s happening:
The survey builder is not letting me put a submit button on it and I have tried multiple codes in need of serious help. Getting very frustrated! Correct me if I am wrong please the codes I have used so far are listed below

Your code so far

<button type="submit>

Your browser information:

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

Challenge: Build a Survey Form

Link to the challenge:

I have used three different codes but it didn’t show all of them

welcome to the community
you can share your codepen link , and recheck the code to make sure you close every tag you open

I figured it out. Literally after I posted this I tried one more time then got it but I appreciate the help :slight_smile:

1 Like

nevermind… it went away after I added the text area again. I removed the text area before putting the submit button in then after I put it back in it deleted the submit button

its working now right

no all it seems to be doing is going away when I put the text-area in and showing up when I don’t have the text-area

send the codepen link

there is nothing in the codepen link u sent

I don’t know how not… it even does the same thing to me on my end… it doesn’t bring it up on a different tab. I really don’t know what to do…

you can copy and paste the link of codepen you are working on,make sure you pressed the save button

I did that… I copy and pasted the code I did. can I just send it here? or…

try saving then sending , then you can send here

once check the syntax of the submit button :
<button type="submit">text</button>

Yeah… I literally did everything I could to see if it would send the whole link and it didn’t
work

paste your code here

you used:

<input type="button" id="submit" .......</input>

here the syntax of both input and button are wrong

button syntax:

<button type="submit">this button submits the form</button>

input syntax:

<input type="text" >

type can take different values but submit is not one of them

I tried that already but will try again