<input type="text" name="catphotourl" placeholder="cat photo URL" required>
<button>submit type="Submit"</button>
Your button
element’s text should be Submit
. You have either omitted the text or have a typo.
<input type="text" name="catphotourl" placeholder="cat photo URL" required>
<button>submit type="Submit"</button>
Your button
element’s text should be Submit
. You have either omitted the text or have a typo.
hi there, welcome to the forum.
If you have question, please tell us what it is and provide a link to the step/challenge you are on.
Hello and thank you. I am get the following error after checking my code:
" Your button
element’s text should be Submit
. You have either omitted the text or have a typo."
Here is the link to step 42.
Here is my code:
<input type="text" name="catphotourl" placeholder="cat photo URL" required>
<button>submit type="Submit"</button>
The spelling of the submit button is correct so I do not know what I am missing.
okay so you have the correct button tag, but you have a few mistakes.
You were asked to add a type attribute? Recall that all html attributes must be created in the opening tag of the element(s) they belong to. So move your type attribute to the button opening tag.
Second, the hint wants you set the text to Submit. So you need to make sure you type Submit (with a capital S) as the text in between the opening and closing tags of the button.
<button> Submit </button>
Got it, thank you hbar1st!