<html>
<head>
<style>
#grad1 {
height: 200px;
background-image: linear-gradient(red, yellow, blue);
}
</style>
</head>
<body>
<h1>Linear Gradient - Top to Bottom</h1>
<p>This linear gradient goes from top to bottom. It starts red, transitioning to yellow, then to blue:</p>
<div id="grad1"></div>
</body>
</html>