steps to create a linear gradients in computer
Answers
Note:
I am using HTML5 and CSS3 as you have not specified any language. Also, I am taking colors, angle and opacity of my choice... You can modify them later...
Answer:
In html file:
<section class="gradient">
</section>
In css file:
.gradient {
background-image: linear-gradient(127deg, #a759d1 0%, #8261ee 91%);
height: 1000px;
}
Explanation:
The background-image property specifies the fill of background. It can be an image, gradient or anything else that can fill the background. The height proprety specifies the height of the element (in my case, it's necessary because I have not added enough content inside the html section tag. If you have enough content inside the tag, then you can delete the height property.) I hope it helps...
Recommendation:
Please mark me the Brainliest and Click on Thanks...