Need help with linking at will

so I have issues with linking at will exercise

Please post your ode and a link to the exercise you are on.

1 Like

https://www.codecademy.com/courses/learn-html-css/lessons/common-elements/exercises/link-at-will?action=lesson_resume

Your code as well. :slight_smile: or in this case just your href tag.

1 Like
<!DOCTYPE html>
<html>
<head>
  <title>Animals Around the World</title>
</head>
<body>
  <h1>The Brown Bear</h1>
  <p>The brown bear (Ursus arctos) is native to parts of northern Eurasia and North America. Its conservation status is currently "Least Concern." There are many subspecies within the brown bear species, including the Atlas bear and the Himalayan brown bear.</p>
  <a href="https://en.wikipedia.org/wiki/Brown_bear" target="_blank">Learn More</a>
  <p>The following are subspecies of bears:</p>
  <ul>
    <li>Arctos</li>
    <li>Collarus</li>
    <li>Horribilis</li>
    <li>Nelsoni (extinct)</li>
  </ul>
  <p>The following countries have the largest populations of brown bears:</p>
  <ol>
    <li>Russia</li>
    <li>United States</li>
    <li>Canada</li>
  </ol>
  <img src="https://en.wikipedia.org/wiki/Brown_bear" target="_blank" 
      alt="A field of yellow sunflowers"/>
</body> 
</html>

You need to format your code otherwise I cannot see it. :smile:

1 Like

haha so sorry … noob at this… first day. thanks for taking your time to help me out !

1 Like

also how do I convert the code

No problem man, welcome to the forums!

1 Like

Here read this,

1 Like

I know this sounds stupid can’t I send you a print screen ?

@designcoder27697 don’t worry, I just formatted it for you.

@bandit

1 Like

Okay @jibblyj has done the heavy lifting for you, but you’ll learn how to do it sooner than later!


So the problem with your code is that you haven’t added an href tag which in its simplest form is,

<a href="#"></a>

2 Likes

right I think that’s good

1 Like