19 lines
751 B
HTML
19 lines
751 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Copying Linked Image</title>
|
|
<link href="css/style.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<h1>Copying Linked Stylesheet</h1>
|
|
<p>Find the files.</p>
|
|
<p>The image below appears if the mechanism we're testing found the <code>img</code> tag and managed to resolve it's <code>src</code> attribute.</p>
|
|
<img src="images/bird.webp" alt="origami bird">
|
|
|
|
<p>But if you look in the <a href="images/">images/</a> directory, you won't see <code>cat.webp</code> even though it's in the source tree, because that file isn't linked to from any of the html pages.</p>
|
|
</body>
|
|
</html>
|
|
|