Gradients
<!DOCTYPE html>
<html>
<head>
<title>Gradients</title>
<link rel="stylesheet" href="styles.css" />
<style>
#grad1 {
height: 400px;
background-color: red;
background-image: linear-gradient(to top right, red, orange, yellow, green, blue, indigo, violet);
}
</style>
</head>
<body>
<div id="grad1" style="text-align:center; margin:auto; color:#888888; font-size:40px;font-weight:bold">
Welcome to Codingal
</div>
</body>
</html>