To make beautiful your html home page, use these gradient colors.
CSS Code for use gradient
Body {
Background: linear-gradient(135deg, #18A5a7, #BFFFC7);
}
// 135deg for top left to bottom right
// 45deg for top right to bottom left
// 0deg for top to bottom
// You can use any degree value
Container {
Background: linear-gradient(to bottom, #FD9869 0%, #FEC9C9 50%);
}
// to top for change the direction
0 Comments