Help with links

*My page is now a link

<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<!DOCTYPE html>
<div id= "main">
     <h1 id= "title"> Trump
</h1>
  <div> The Grestest American President </div>
<a id= "photo-link" href= "https://en.wikipedia.org/wiki/Donald_Trump" target= "-blank">
<div id=img-div>
  <img id ="image" src="https://farm1.staticflickr.com/958/41970501282_58df5cacb3_b.jpg"</a> </img> 
 <div id= "body">
       <p id= "body"> In the short time Donald Trump has been in office he has done more for our country than I have ever seen in my lifetime. So I believe him when he said he is going to make our country great again.</p></div>
<div id = "list"</p>      
  <ul>
    <li>Tax cuts and increased jobs</li>
    <li>Tariffs </li>
    <li> Us is number one in oil production</li>
    <li> Cut back on regulations</li>
    <li> The end of obamacare </li>
    <li> He is pro-life and supports normal marriage.</li>
    <li> He supports gun owners</li>
    <li> He is at war with immigration</li>
        <ol>
          <li> Travel Ban</li>
          <li> DACA</li>
          <li> Family separation at the border</li>
          <li> The Wall </li>
          <li> Government Shutdown</li>
          

        </ol>
    <li> Foreign policy</li>
    <li> End of ISIS</li>
  </ul>
</div>
<div id= "body">
  <p>
    There many other things he has done, but the media has colored him in a negative way. The Democrats think he is a joke, although they are not laughing now. Even so he has not lost sight of putting America first. 
    To learn more about our national leader goto <a id="wiki-link" href= "https://en.wikipedia.org/wiki/Donald_Trump"
 target="-blank">Trump</a>
  </p>
</div>

Chome

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

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/responsive-web-design-projects/build-a-tribute-page

I can’t find the mistake.

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make easier to read.

See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.

Note: Backticks are not single quotes.

markdown_Forums

You have several problems.

  1. You have open tags without closing tags

  2. You have closing tags for elements which do not have closing tags

  3. Surround all element attribute values with double or single quotes.

  4. Make sure you close a nested element before closing its parent element. You have several instances of this.

  5. All id attribute values should be unique in the page. You have several id=“body”.

You need to carefully review your existing html code and validate each element which needs a closing tag has one. Remove closing tags for elements which are self-closing (i.e. img, input, etc…).

Wow your tearing me apart. i just need a little help not a critique.i guess i can find it on my own. Thanks.

Hi! Is this in codepen.io or locally on your pc??
if it’s in codepen send me a link I may be able to help you out.

As for what @camperextraordinaire said, ignoring problems is not
a good habit. It may seem daunting at times when people are
saying oh this sucks and that sucks but for the most part people
on these forums want to try to help. I to have posted unfinished
code when looking for help and sometimes people focus on that
instead of the problem you are trying to solve. You just have to
step back for a minute and not let people make you mad. Typing
has one major draw back in that you can’t type emotion.

One quick thing to, i’m really not sure what your problem is.
In terms of what coding error you are trying to solve. Other than simply
passing test cases.

Here a line as an example of what @camperextraordinaire means

The img tag is self closing and you have a lost a closing tag between an opening and closing tag of something else
And your img is written like <img without the second bracket

Once you fix these things (this line and others) your page will stop being a link, as that is probably given by an a tag where the browser can’t find the closing tag

yes i fix those but I didn’t understand that that was causing the problem. so forgive me. after going though line by line I fixed it. its my first attempt and I’m failing I really thought I could do this.

If you are failing you are doing great: you are trying
you can’t just succeed, you need to fail before you can succeed

1 Like

Well I do know how to fail.

And you have learned how not to do something
So now you know that that is not the right way, and you can try a different way!