Build a Tribute Page Project - Build a Tribute Page

My image does not load and I put the src, I don’t know why:

Your code so far

/* file: index.Ext.html */






<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Tribute Page</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <main id="main">
      <h1 id="title">Alpha Oumar Konare</h1>
      <p>A Pan-Africanist</p>
      <div id="img-div">
        <img scr="https://en.m.wikipedia.org/wiki/File:Alpha_Oumar_Konare.jpg" id="image">
        <figcaption>Professor Alpha Oumar Konare with president George W. Bush of America in 2001</figcaption>
      </div>
    </main>
  </body>
</html>
    


    


/* file: styles.Ext.css */






<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Tribute Page</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <main id="main">
      <h1 id="title">Alpha Oumar Konare</h1>
      <p>A Pan-Africanist</p>
      <div id="img-div">
        <img scr="https://en.m.wikipedia.org/wiki/File:Alpha_Oumar_Konare.jpg" id="image">
        <figcaption>Professor Alpha Oumar Konare with president George W. Bush of America in 2001</figcaption>
      </div>
    </main>
  </body>
</html>
    


    


Your mobile information:

TECNO LE6 - Android 11 - Android SDK 30

Challenge: Build a Tribute Page Project - Build a Tribute Page

Link to the challenge:

Check your spelling in your code

3 Likes

Two minor issues… your attribute name should be src and the url isn’t a valid image link.
Try this url instead:
https://upload.wikimedia.org/wikipedia/commons/4/4d/Alpha_Oumar_Konare.jpg

4 Likes

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