+ 1
Haw can I do a circle wich go on oblical pozition !!! (SGV)
HTML5!!!
2 Réponses
+ 1
can please elaborate your requirements.
oblical pozition??
+ 1
In SVG circle can be drawn in following way-
<!DOCTYPE html>
<html>
<head>
<style>
</style>
</head>
<body>
<svg width="100"height="100">
<circle cx="50" cy="50"r="40" stroke="green"stroke-width="4"fill="yellow" />
</svg>
</body>
</html>