Build a Checkout Page - Build a Checkout Page

Tell us what’s happening:

I would like to add an image source from my Desktop of an img file I saved. How can I do that? Is it because it would have to be located on your server? I can add it from the website source.

Your code so far

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <title>Checkout Page</title>
</head>

<body>
<h1>Checkout</h1>
<section>
    <h2>Your Cart</h2>
    <img href="Headphone-Zone-Moondrop-Blessing-3-01.webp" src="C:\Users\WilBl\OneDrive\Desktop\Coding\FCC\Responsive Web Design\4_ACCESSIBILITY\9_Build a Checkout Page (Lab)\headphones\Headphone-Zone-Moondrop-Blessing-3-01.webp"

</section>
<section>
</section>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36 Edg/149.0.0.0

Challenge Information:

Build a Checkout Page - Build a Checkout Page

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-checkout-page/66da326c02141df538f29ba5.md at main · freeCodeCamp/freeCodeCamp · GitHub

It needs to be on a server, your computer is not a server so you can’t use it here

you need the image to be hosted somewhere and use the link provided by an hosting site

Thanks. I thought it might be that.