Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<svg width="400" height="100">
<defs>
<clipPath id="explicit-1"><ellipse cx="100" cy="50" rx="40" ry="40"/></clipPath>
<clipPath id="explicit-2"><ellipse cx="300" cy="50" rx="40" ry="40"/></clipPath>
</defs>
<rect x="0" y="0" width="200" height="100" fill="green" clip-path="url(#explicit-1)"/>
<rect x="200" y="0" width="200" height="100" fill="green" clip-path="url(#explicit-2)"/>
</svg>
</html>