Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<style> 
#grad1 {
  height: 200px;
  background-color: #cccccc;
  background-image: radial-gradient(red, yellow, green);
}
</style>
</head>
<body>
<h2>Radial Gradient as Background Image</h2>
<p>This radial gradient starts in the center. It starts red, transitioning to yellow, then to green:</p>
<div id="grad1"></div>
</body>
</html>