Img not showing up

Tell us what’s happening:
Hello! So I’m working on this certificate challenge but my img is not showing up. Do you see anything wrong with my code or is it just a glitch?

  **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">    
<meta name="description" content="HTML/CSS Quiz">
<title>CFM About Sheila</title>

</head>

<body>
<main id="main">
  <h1 id="title">Sheila Hood</h1>
  <figure id="img-div">
    <img id="image" src="/Users/jakeainsworth/Desktop/Sheila.jpeg">
    <figcaption id="img-caption">Sheila is the founder and artist behind Colorado Fudge Maker</figcaption>
  </figure>
</main>
</body>
</html>
/* file: styles.css */

  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15

Challenge: Build a Tribute Page

Link to the challenge:

Hi!

Your img url directs to a locally stored file. Online code editors does not have access to your hard drive. I would suggest that you upload the picture online and grab the link, or just use look for a picture that is already uploaded somewhere.

Hope this helps! :slight_smile:

1 Like

Thank you so much! That worked!

1 Like

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