OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <svg> | |
3 <linearGradient id="g" x2="0" y2="1"> | |
4 <stop offset="0" stop-color="green"/> | |
5 <stop offset="0.5" stop-color="green"/> | |
6 <stop offset="0.5" stop-color="blue"/> | |
7 <stop offset="1" stop-color="blue"/> | |
8 </linearGradient> | |
9 <g> | |
10 <text x="0" y="100" fill="url(#g)" stroke="url(#g)" stroke-width="2" font-s ize="72">Hello</text> | |
11 </g> | |
12 </svg> | |
OLD | NEW |