Tell us what’s happening:
Describe your issue in detail here.
It is telling me that everything is correct except for
-
Failed:You should have an
aelement with anidoftribute-link. -
Failed:Your
#tribute-linkshould have anhrefattribute and value. -
Failed:Your
#tribute-linkshould have atargetattribute set to_blank.
Please help I feel like everything is correct
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title id="title">Micheal Jordan</title>
<link rel="stylesheet" href="styles.css">
</head>
<main id="main">
<h1>Micheal Jordan</h1>
<div id="img-div">
<img id="image" src="https://cdn.nba.com/headshots/nba/latest/1040x760/893.png" alr="Micheal Jordan NBA">
<figcaption class="caption" id="img-caption">The great Micheal Jordan holding a basketball.</figcaption>
</div>
<div class="box">
<p id="tribute-link">
1963 - Micheal Jordan was born.
</p>
<p> 1968 - Micheal Jordan moved to North Carolina as a toddler.</p>
<p> 1978- Micheal Jordan failed to make his high school basketball team.</p>
<p> 1982- Micheal Jordan wins college national championship with North Carolina.</p>
<p> 1984- Jordan was selected 3rd overall in the first round of the nba draft by the Chicago Bulls.</p>
<p>1991–1993- Jordan threepeated as nba champions with the Chicago Bulls.</p>
<p>1993-1994- Micheal retired from basketball to play Minor League Baseball.<p>
<p>1995- Jordan returned to play for the Bulls coming out of retirement</p>
<p>1996-1998- The Bulls threepeated as champions with Jordan back in the lineup.</p>
</div>
<h2 id="tribute-info"> If you want to learn more about Micheal Jordan go to this <a id="tribute-link" href="https://en.wikipedia.org/wiki/Michael_Jordan" target="_blank"> site </a></h2>
</main>
</html>
/* file: styles.css */
img{
width:100%;
max-width: 100%;
max-height: 1060px;
align: center;
display:block;
}
h1{
text-align: center;
}
.caption{
text-align: center;
}
p{
text-align:center;
font-size: 30px;
}
.box{
background-color: red;
}
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36
Challenge Information:
Tribute Page - Build a Tribute Page