<!DOCTYPE html>
<html>
<head>
<title>CSS Web Layout</title>
<style>
.color_gradient {
height: 55px;
background-color: red; /* For browsers that do not support gradients */
background-image: linear-gradient(to right, darkred, red, crimson, skyblue, navy, blue, darkblue);
}
</style>
</head>
<body>
<div class='color_gradient'></div>
</body>
</html>