13 lines
258 B
XML
13 lines
258 B
XML
<svg xmlns="http://www.w3.org/2000/svg">
|
|
<style>
|
|
<![CDATA[
|
|
svg {
|
|
background-image: linear-gradient(lime, lime);
|
|
background-clip: text;
|
|
}
|
|
text { transform: skewy(30grad); }
|
|
g { perspective: 0; }
|
|
]]>
|
|
</style>
|
|
<g><text>hello</text></g>
|
|
</svg>
|