make bvackground a horizontal gradient css code example
Example 1: html css background linear-gradient
background: linear-gradient(#333, #333 50%, #eee 100%);
\\code for a basic gradient background
#grad {
background-image: linear-gradient(red, yellow);
}
Example 2: how to insert gradient in css
body{
background-image: linear-gradient(45.34deg, #EA52F8 5.66%, #0066FF 94.35%);
}