You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.2 KiB

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
</head>
<body>
<svg width=800 height=600>
<!-- <circle r=45 cx=50 cy=50 fill=red stroke=blue stroke-width=5></circle> -->
<!-- <circle r="50" cx="200" cy="300"/> -->
<!-- <line x1="0" y1="0" x2="100" y2="100"/> <!-- this element won't be visible because it doesn't have a stroke --> -->
<!-- <line x1="0" y1="0" x2="100" y2="100" stroke="purple"/>
<rect x="50" y="20" width="150" height="150"/>
<ellipse cx="200" cy="80" rx="100" ry="50"/>
<polygon points="200,10 250,190 160,210" />
<polyline points="20,20 40,25 60,40 80,120 120,140 200,180" stroke="blue" fill="none"/>
<text x="0" y="15">I love SVG!</text>
<g transform = "translate(20,30) rotate(45) scale(0.5)"></g>
<path d="M150 0 L75 200 L225 200 Z" stroke="black" fill="transparent"/>
<path d="M0 70 C 0 120, 50 120, 50 70 S 100 20, 100 70" stroke="black" fill="transparent"/>
<path d="M0 100 Q 50 50, 100 100 T 200 100 Z" stroke="black" fill="transparent"/> -->
<path d="M10 10 A 50 50 0 0 0 50 10" stroke="black" fill="transparent"/>
</svg>
</body>
</html>