I'm not getting the nested challengeg

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>
<input type="text"<form action="https://www.freecatphotoapp.com/submit-cat-photo"></form>

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

User Agent is: Mozilla/5.0 (Linux; Android 10; RMX1971) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.101 Mobile Safari/537.36

Challenge: Create a Form Element

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.

Looking at the code you’ve supplied you should revisit the lesson. This is not the first time you’ve been tasked with nesting one element inside another.
The lesson gives the following example

<form action="/url-where-you-want-to-submit-form-data">
  <input>
</form>

which is showing

<parent element>
  <nested element>
</parent element>

Hope that helps. If not, please describe the issue you’re having thoroughly.

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" placeholder="catphotoapp URL"></form>

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

User Agent is: Mozilla/5.0 (Linux; Android 10; RMX1971) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.101 Mobile Safari/537.36

Challenge: Create a Form Element

Link to the challenge:

Hi, do not modify the original placeholder text within the input element and you will pass.

You were tasked with using the existing input element. For some reason you changed the placeholder text.

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