Tribute Page - Build a Tribute Page

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link href="styles.css" rel="stylesheet">
<title id="title">Rapper Gali Jiang></title>
</head>
<body>
<div class="frame">
<div class="canvas">
<header>
<h1>Gali Jiang</h1>
<p>The one of the best Rapper in China</p>
</header>  
<main id="main">
<div class="one">
<div id="img-div">
<div class="img-div">
<img id="image" src="https://s3.bmp.ovh/imgs/2022/08/18/95ae6f56a6329ab2.jpg">
<div id="img-caption">
<p>This is a photo of the match in the rap duel</p>
<h2>Here's a time line of Gali's life:</h2>
<div id="tribute-info">
<ul class="li">
<li>1992-Born in Shanghai China</li>
<li>2017-He participated in the iQiyi hip-hop music talent show "China Rip-Hop"</li>
<li>2018-Released the rap song 《Illusion Freestyle》</li>
<li>2019-Released second music EP 《After Light》</li>
<li>2020-Participated in the iQiyi youth rap music program "China New Rap 2020" and won the third runner-up of the year</li>
</ul>
<div id="tribute-link">
<p class="footer">If you have time, you should read more about this incredible rapper on his <<a href="https://tribute-page.freecodecamp.rocks/" target="_blank" id="tribute-link">Wikipedia entry</a>.</P>
</a>
</div>
</main>    
</body>  
</html>

/* file: styles.css */
.canvas{width:600px;
      height:900px;      background-color:lightgrey;
      overflow:hidden;
      }
.frame{width:600px;
     height:900px;
border:10px solid grey;
     margin:20px auto;
     }
.one{width:550px;
   height:400px;
background-color:white;
   margin:10px auto;
   padding:20px auto;}
.img-div{padding:25px;}
h1{font-family:Ink free;
 text-align:center;
 font-weight:1000;}
p{font-family:Ink free;
text-align:center;}
h2{font-family:Ink free;
 text-align:center;
 font-weight:1000;
 font-size:20px;
 margin:40px auto;}
.li{font-family:Ink free;
}
.footer{margin:60px;}
img{max-width:100%;
  display:block;}
  **Your browser information:**

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

Challenge: Tribute Page - Build a Tribute Page

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.

thanks :slight_smile: i already solve the problems

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