ori-include-linked-paths/linked-stylesheet.html

20 lines
626 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 Stylesheet</title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<h1>Copying Linked Stylesheet</h1>
<p>Find the files.</p>
<p>This link to the <a href="css/style.css">Stylesheet</a> will only work if the mechanism we're testing found the link in this page's <code>head</code>.
<p>Just for fun, this file also links to an image:</p>
<img src="images/monkey.webp" alt="a friendly origami monkey">
</body>
</html>