<!DOCTYPE html>
<html>
<head>
<title>Hyperlinking, Marquee, and Image Demo</title>
<style>
body {
font-family: sans-serif;
}
a {
color: blue;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
marquee {
font-size: 24px;
font-weight: bold;
color: red;
background-color: yellow;
}
img {
width: 200px;
height: 200px;
float: right;
margin: 20px;
}
</style>
</head>
<body>
<h1>Hyperlinking, Marquee, and Image Demo</h1>
<marquee>This is a marquee message.</marquee>
<p>This is a paragraph with a link to another page: <a href="https://www.google.com">Google</a></p>
<img src="https://www.google.com/images/branding/google_logo.svg" alt="Google logo">
</body>
</html>