css gradeont code example
Example 1: css linear gradient
#grad {
background-image: linear-gradient(to right, #f1b1b1 , #82e6e8);
}
Example 2: css gradient generator
background: linear-gradient(Direction (keyword or degrees), color1 10% (10% width), color2 width (it's not neccessary), ...);