No video for this exercise, so i'm lost

dont undserstand which steps to take no video to help out

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://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" placeholder="cat photo URL">
</main>

Your browser information:

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

Challenge: Create a Form Element

Link to the challenge:

you are supposed to put form tags around your input element and give your form tag an action attribute.

the form element basically lets the browser know that a certain section of the page is interactive
the action attribute lets the browser know where to submit the form data

Can you describe at what point you get stuck?

I strongly advise against watching the video for every challenge. You’ll learn much less that way.

1 Like

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