Tell us what’s happening:
I’m trying to run the tests, but when I click the run button, nothing happens. Any ideas?
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meat charset="utf-8">
<meta name="viewport" content="width=device-width">
<title> Eiichiro Oda </title>
<link rel="stylesheet" href="styles.css">
</head>
<body background="https://static.animecorner.me/2023/03/one-piece-wano-visual.jpg">
<main id="main">
<h1 id="title"> Eiichiro Oda </h1>
<div id="img-div">
<img id="image" src="https://cdn.myanimelist.net/images/voiceactors/2/74096.jpg">
<figcaption id="img-caption"> The one true anime legend.
</figcaption>
</div>
<div class="tribute-info" id="tribute-info"> Brief intro about Oda:
</div>
<div>
<ul>
<li> born in <strong> 1975</strong>
<li> Japanese anime artist</li>
<li> created the best anime of all time <strong> One Piece</strong> </li>
<li> sold more than 520 million copies worldwide</li>
<li><strong>One piece</strong> is considered to be the best selling manga of all time</li>
<li> He is very well knwon for his great forshadowing and story telling </li>
</ul>
</div>
<a id="tribute-link" target="_blank" ></a>
<div>
This man right here created the best and most thought out story of all time and needs to get the recognistion he deserves.
</div>
</main>
</body>
</html>
/* file: styles.css */
img {
display: block;
max-width: 100%;
min-width: 25%;
height: auto;
padding-left: auto;
padding-bottom: 50px;
margin-left: auto;
margin-right: auto;
}
body {
font-family: arial;
color: black;
font-size: 20px;
}
.tribute-info {
padding-top: 15px;
border: solid;
border-color: #3f3f;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36
Challenge Information:
Tribute Page - Build a Tribute Page