Tell us what’s happening:
The checker keeps telling me my #title should not be empty, where as my #title is not empty
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang='en'>
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=content-width, initial-scale=1.0"
<title id="title">Tribute to Tony Elumelu</title>
</head>
<body>
<main id="main">
<div id="img-div">
<img id="image" src="https://media.premiumtimesng.com/wp-content/files/2022/07/Tony-Elumelu.jpeg" alt="Tony Elumelu"> <div id="img-caption">
<p><i>The man who is committed to grooming africa's young and smart entreprenurs </i> </p></div>
<p id="tribute-info">Anthony Onyemaechi Elumelu Born <li>22 march 1963</li></br> in <li> Jos, Plateau state capital</li></br>
Elumelu studied Economics at Bendel State University (now Ambrose Alli University), obtaining a Bachelor of Science with a Lower Second Class (2:2). Afterward, obtained a Master of Science degree in Economics from the University of Lagos.</br>
Elumelu worked in the Nigerian Bank Union Bank as a corps member during his National Youth Service Corps in 1985, before starting his career as a salesman. Elumelu subsequently joined Allstates Trust Bank in 2005 and United Bank for Africa (UBA) was acquired afterwards.
On his early career, he has said:
I started my career as a salesman, a copier salesman to be specific, young, hungry, and hardworking, but the reality was that I was just one of the thousands of young Nigerian graduates, all eager to succeed.
In 1997, Elumelu led a small group of investors to take over a struggling Crystal Bank (later renamed Standard Trust Bank). He turned it profitable within a few years and in 2005, he led one of the largest mergers in the banking sector in Sub-Saharan Africa by acquiring United Bank for Africa (UBA).</br><a id="tribute-link" target="_blank" href="https://en.wikipedia.org/wiki/Tony_Elumelu">see more</a></p>
</div>
</main>
</body>
/* file: styles.css */
#img-div{
}
#image {
max-width: 100%;
height: auto;
display: block;
margin:auto;
}
img{
display:block;
}
#title{
color: blue;
text-align: center;
}
p{
text-align: center;
}
#tribute-info{
text-align: center;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36
Challenge Information:
Tribute Page - Build a Tribute Page