I cannot figure out which test is failing with my tribute page. Help!

9 out of my 10 tests pass, and I can’t figure out what I am missing. I think I’ve been staring at it for too long and now I can’t see anything. Any ideas?

<main id="main"> 
<h1 id="title">A Tribute</h1>
<h2>This is the greatest and best song in the world...</h2>
 <figure id="img-div">
      <img
           id="image"
class= "thin-black-border" src="https://c.tenor.com/s86gYI8UUBkAAAAC/tenacious-d-tribute.gif" alt="Jack Black and Kyle Glass rocking super hard."/>
   
   <figcaption id="img-caption">
     Jack Black (left) and Kyle Glass (right) rocking their brains out. </figcaption> 
<section id="tribute-info">
  <h3 id="headline">Here is the time of events on the day that changed rock forever:</h3>
  <ul>
    <li><strong>A long time ago:</strong> Jack and his brother, Kyle, were hitchhiking down a long and lonesome road.</li> 
    <li>All of a sudden,
there shined a shiny demon
in the middle of the road.</li> 
      <li>The demon then commanded them to <em>"play the best song in the world, or he'd eat their souls.</em></li> 
    <li>Then, Jack and Kyle looked at each other and they each said, <em>"Okay."</em></li> 
 <li>They played the first thing that came to their heads and it just so happened to be the <strong>best</strong> song in the world.</li> 
      <li>Needless to say, the beast was stunned.</li> 
    <li>The beast asked, <em>"Be you angels?"</em></li> 
    <li>Jack and Kyle replied with, <em>"Nay; we are but men!"</em></li> 
    <li>The pair continued to play the best song in the world.</li> 
  </ul>
  <blockquote
              
    cite="https://www.musixmatch.com/lyrics/Tenacious-D/Tribute-Live">
    
  <p> 
    "Look into my eyes and it's easy to see.
One and one makes two. Two and one makes three.
It was destiny."
  </p>
  <cite>--Jack Black, Tenacious D
    </cite> 
  <h3>
    To see a reenactment of the duo's heroic journey, please follow the link. 
   <a
        id="tribute-link"
        href="https://www.youtube.com/watch?v=_lK4cX5xGiQ"
        target="_blank"
        >Tribute</a
      >.
  </h3> 
    </section> 
    </main> 

Your code so far

Your browser information:

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

Challenge: Build a Tribute Page

Link to the challenge:

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 it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

Thank you!! I will remember that for next time!

Hi @ashleyraeisom,

Could you share the link of your CodePen code? Like this we can check the tests.

Of course! Here is the link! https://codepen.io/ashleyisom/pen/LYOgJXB

To figure out which tests are not passing, just click the red button that shows the test results. It will open a window that shows you the test results. Read the first couple of lines of an error message and that should point you in the direction of your solution.

Thank you!! That is what I was looking for!

1 Like

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