blob: 489a2b842e88f15d5b635a3c03fc26ed64c453d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html style="background-color: lime;">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<span style="display:none;"> דניאל גל</span>
<svg width="100%" height="100%">
<defs>
<path id="p" d="M50,50h400"/>
</defs>
<text fill="lime" font-size="50px">
<textPath xlink:href="#p"><tspan>I should be lime</tspan></textPath>
</text>
</svg>
</body>
</html>
|