Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<style>
svg {
width: 100px;
height: 100px;
overflow: visible;
}
polygon, circle {
stroke: purple;
stroke-width: 3px;
}
polygon {
fill: yellow;
}
</style>
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<polygon points="50,0 100,50, 50,100, 0,50" />
<circle cx="50" cy="50" r="20" style="fill:green"></circle>
</svg>