Example

by khamer

HTML

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/linearGradient -->

<svg xmlns="http://www.w3.org/2000/svg">
    <defs>
        <linearGradient id="g" x1="0" x2="0" y2="1">
            <stop offset="0%"  stop-color="green"/>
            <stop offset="100%" stop-color="gold"/>
        </linearGradient>
    </defs>

    <rect fill="url(#g)" width="100%" height="100%"/>
</svg>