1<!-- Derived from https://developer.mozilla.org/en/docs/Web/SVG/Element/defs --> 2<svg width="80px" height="30px" viewBox="0 0 80 30" 3 xmlns="http://www.w3.org/2000/svg"> 4 5 <defs> 6 <linearGradient id="Gradient01"> 7 <stop offset="20%" stop-color="#39F" /> 8 <stop offset="90%" stop-color="#F3F" /> 9 </linearGradient> 10 <linearGradient id="Gradient02"> 11 <stop offset="20%" stop-color="#39F" /> 12 <stop offset="90%" stop-color="#F3F" /> 13 </linearGradient> 14 </defs> 15 16 <rect x="10" y="10" width="60" height="10" 17 fill="url(#Gradient01)" /> 18</svg> 19 20