Can you help pleaseeeeee ı can't do

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

  **Your code so far**

<main>
<p>View more </p>
<p>View more </p>
<p>View more </p>
</main>
  **Your browser information:**

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

Challenge: Nest an Anchor Element within a Paragraph

Link to the challenge:

Hi @boran_karadag !

I would reset the lesson because you changed to many things from the original code.

Nest the existing a element within a new p element.
This is the existing a element they are talking about.

<h2>CatPhotoApp</h2>
<main>

  <a href="https://www.freecatphotoapp.com" target="_blank">cat photos</a>

You are supposed to use that one.

Do not create a new anchor tag.

The new paragraph should have text that says View more

You need to wrap your p tags around the anchor element.

<p>
EXISTING ANCHOR ELEMENT GOES HERE
</p>

Then you need to add the text of View more.

<p>ADD VIEW MORE TEXT HERE
EXISTING ANCHOR ELEMENT GOES HERE
</p>

Hope that helps!

Sidenote: Not sure why you keep editing your post.
But I will change it back to the original readable format.

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