I really dont know whats going on HELP!

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>

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

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

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14092.46.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.69 Safari/537.36

Challenge: Create a Form Element

Link to the challenge:

you have to remove the backslashes on the link. Also, make sure you copy directly from the check bar thing. If u do not know what I mean, this is the check bar:
image

1 Like

make sure you also have double quotes around the link
example:

<a href="example-link">

1 Like

what do they mean by nested ? i dont really understand that

Nesting pretty mush mean putting an element inside an element.
example:

<div>
<h1>hi</h1>
</div>

In this case, following the example, the h1 element tag is nested inside the div element. I hope you understand. If u need me to clarify it a bit more, I would be happy to:)

pls go ahead and clarify it. im a newbie and i dont realy get it easily

if I were to say, nest the h1 element inside the div element, this will be the code:

<div>
<h1>hello</h1>
</div>

Example 2: nest the p tag inside the form element…

<form>
<p>h1</p>
</form>

Remember you can always watch the video and the hints:)

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