radal gradent css code example
Example 1: linear-gradient
background: linear-gradient(to left, #333, #333 50%, #eee 100%);
Example 2: radial gradient css
.gradient {
background-image:
radial-gradient(
circle,
yellow,
#f06d06
);
}