Hi all,
I’m having issues with the tribute page project, specifically with the unordered list. As you can see in the code, the list should have five list items, however, only one is appearing and it isn’t even the first list item. The link also seems to be out of place. I’ve combed through my code and I’m sure I’m just missing something basic. Any help is much appreciated. Also, let me know what you think of the overall design.
Thanks!
#image {
width: 100%;
max-width: 625px;
display: block;
height: auto;
margin-left: auto;
margin-right: auto;
}
main {
background-color: black;
}
.container {
color: white;
}
.container {
font-size:;
width: 100%;
background: ;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 200px 200px 200px;
margin-left: auto;
margin-right: auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
#all {
color: #FDB927;
}
h1 {
color: #FDB927;
text-align: center
}
.d1 {
position: relative;
padding-bottom: 56.25%;
}
.d1 iframe {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
margin-top: 0;
object-fit: cover;
}
body {
margin: 0px;
}
iframe {
height: 100%;
width: 100%;
}
<!DOCTYPE html>
<html>
<!-- metadata elements -->
<head>
<title id="title">The Black Mamba: Win Over Anything</title>
</head>
<main id="main">
<h1>The Black Mamba: The Legacy </h1>
<div id="img-div">
<figure>
<img src="http://game7network.com/wp-content/uploads/137_1atiba_jefferson_kobe_bryant_3.jpg" id="image" alt="blah blah blah">
<figcaption id="img-caption">
I am Kobe
</figcaption>
</figure>
</div>
<div id="ordered-list">
<ul>
<li>Five Time NBA Champ</li>
<li>11 NBA First Team Selections</li>
<li>12 Time All-Defensive Team</li>
<li>One Time MVP</li>
<li>18 Time All-Star</li>
</ul>
</div>
<div>
<a href="https://ftw.usatoday.com/2015/12/kobe-bryant-stats-record-most-games-20-years-most-missed-shots-81-points-stats-michael-jordan-lakers" target="_blank">What's up</a>
</div>
<article id="tribute-info">
<div class="container">
<div class="d1" id="all">20 time all-star</div>
<div class="d2" id="all"><iframe width="560" height="315" src="https://www.youtube.com/embed/Lf4biDUfwug" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
<div class="d3" id="all">3</div>
<div class="d4" id="all">4</div>
</div>
</article>
</main>
</html>