I have done as per the tutorial but it isnt moving forward

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**

<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://www.bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form action="https://www.freecatphotoapp.com/submit-cat-photo">
  <input type="text">
  <button type="submit">Sumbit</button>
</form>

</main>
  **Your browser information:**

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

Challenge: Add a Submit Button to a Form

Link to the challenge:

<input type="text" placeholder="cat photo URL">

    <button type="submit">Submit</button>

@CHINMAY123 ,

write like this.

Welcome to the forums.

When asking questions follow 3 steps (it will make job easier for everyone):

  1. Tell us what is happening
  2. Show us your code (and link to the challenge)
  3. Tell us what you have tried

Your task is:
“Add a button as the last element of your form element with a type of submit , and Submit as its text.”

To solve this, first find the <form> tag. There will be one element inside: <input> tag.

You need to add another element inside the form tag: <button>.
Here is some tutorial about buttons.

@rajat310 Writing a solution does not help anyone. If someone want to copy/paste a solution they can just click ‘hint’ in the lesson help and get it from there. We are here to learn. Please keep that in mind.

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