I donk know what its asking for plz help someone?

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>

<a href="https://freecatphotoapp.com">jump to the bottom</a>

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

<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff. Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched. Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched. Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff. Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
<p>Meowwww loved it, hated it, loved it, hated it yet spill litter box, scratch at owner, destroy all furniture, especially couch or lay on arms while you're using the keyboard. Missing until dinner time toy mouse squeak roll over. With tail in the air lounge in doorway. Man running from cops stops to pet cats, goes to jail.</p>
<p>Intently stare at the same spot poop in the plant pot but kitten is playing with dead mouse. Get video posted to internet for chasing red dot leave fur on owners clothes meow to be let out and mesmerizing birds leave fur on owners clothes or favor packaging over toy so purr for no reason. Meow to be let out play time intently sniff hand run outside as soon as door open yet destroy couch.</p>

</main>

<footer>Copyright Cat Photo App</footer>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36.

Challenge: Link to Internal Sections of a Page with Anchor Elements

Link to the challenge:

some websites have some links that bring you to specific sections of the current page, you need to implement a link that bring to the footer

this is usually done giving an id to the element you want to go to. For example you could have a link at the bottom of tbe page like <a href="title">Back to Top</a>, and if the title of your page has a id="title" it will bring there

1 Like

all what you need to do is change the src from external to internal, means the source is on your local drive i.e. inside your computer like for example c:\desktop\html project
so replace the src in and use #footer as a local link instead.

1 Like

life saver thanks i got another problem too plz check

:slightly_smiling_face: :face_with_thermometer:

you’re welcome, what’s the problem you have?

plz look at this sir :no_mouth:

the exercise requires you to add the attribute ‘checked’ to first and first only

adding ‘checked’ will make your first item in both check lists checked/marked /selected by default in the HTML page.
the attribute “type = radio” creates a checkbox list for a single selection means you can select one item only, while the attribute “type = checkbox” create a checkbox list for multiple selection means you can select as many items.
like when you are in a restaurant website to order for example pizza, they give you options for different sauces but you can select only one => type = radio ;; they give you options for add-ons and drinks where you can select more than one => type = check box.

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