i got a lot of eror, howewer i think i did type correct but it does not work… please help me
-
You should have a
main
element with anid
ofmain
. -
Failed:Your
#img-div
,#image
,#img-caption
,#tribute-info
, and#tribute-link
should all be descendants of#main
. -
Your
img
element should have adisplay
ofblock
. -
Your
#image
should have amax-width
of100%
. -
Your
#image
should have aheight
ofauto
.**Your code so far**
/* file: index.html */
<style>
body {
background-color: black;
color: white;
font-family: calibri;
}
</style>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<div id="main">
<h1 id="title">Vegeta - the true underog</h1>
<div id="img-div">
<a id="tribute-link" target="_blank" href="https://www.youtube.com/watch?v=MqmKlo6Gj84">
<img id="image" src="https://cdnuploads.aa.com.tr/uploads/Contents/2021/08/11/thumbs_b_c_8fe61e9f4fdf15a13e895a102669f301.jpg" alt="Vegeta - the true underog" width="204" height="204">
</a>
<figcaption id="img-caption">
Fatih Terim 4 Eylül 1953 tarihinde Adana'da doğdu. Fakir bir ailenin çocuğu olan Terim, babasıyla birlikte pek çok farklı işlerde çalışmıştır. Futbol kariyerine Adana Demirspor'da kaleci olarak başlamıştır. 1974 yılında 1 milyon 650 bin liraya Galatasaray'a transfer olmuştur.</figcaption>
</div>
</div>
<p id="tribute-info">
<b>Fatih Terim ve KAzandırdığı Kupalar</b>
<ul>
<li>8 lig</li>
<li>3 TSYD Kupası</li>
<li>3 Türkiye Kupası</li>
<li>2 Cumhurbaşkanlığı Kupası</li>
</ul>
</p>
</div>
/* file: styles.css */
#img-caption
{
width: 400px;
}
#image
{
max-width: 1004;
height: auto;
display: block;
}
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36
Challenge: Responsive Web Design Projects - Build a Tribute Page
Link to the challenge: