Tell us what’s happening:
Tributetribute page
should
<div id="tribute-info">
<h3>tribute
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tribute</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main id="main">
<h1 id="title">tribute page</h1>
<div id="img-div">
<img id="image" ></img>
<div id="img-caption">
<h3> should</h3>
</div>
</div>
<div id="tribute-info">
<h3>tribute info</h3>
</div>
<a id="tribute-link" href="https://en.wikipedia.org/wiki/Stephen_Sondheim" target="_blank">Wikipedia</a>
</main>
</body>
</html>
/* file: styles.css */
#image{
max-width: 100%;
height: auto;
display: block;
align-items: center;
}
img{
display: block;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36
Challenge Information:
Tribute Page - Build a Tribute Page