I am trying to include a .jpg image from my C: drive into the project, but it shows my alt-text instead of my photo.
Alternatively (here below) I have picked a random image online, copied the URL and inserted it. However, it does the same: just the alt text. Messing around in the CSS changes nothing - making it smaller, auto fit, deleting all of the CSS… no reaction. What am I doing wrong…? I have finished the requirements for the project, it checks all the boxes. I could just move on without fleshing out the assignment, but that is sort-of useless, isn’t it.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, inital-scale=1.0" />
<meta name="description" content="tribute page Alf and Milo" />
<title id="title">ALF AND MILO</title>
<link rel="stylesheet" href="styles.css" />
</head>
<main id="main">
<div id="img-div">
<img id="image" src="https://images.app.goo.gl/jJ8Xm9SvhEd7UNvZA" alt="WHERE IS THE IMAGE!?">
<figcaption id="img-caption">Alf and Milo - kiss your favorite animal</figcaption>
</div>
<p id="tribute-info">CONTAINS TEXTUAL CONTENT</p>
<a id="tribute-link" target="_blank" href="https://www.shecodes.io/athena/4835-how-to-insert-an-image-from-folder-in-html">link to page</a>
</main>
</html>