Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<style>
svg {
width: 100px;
height: 100px;
overflow: visible;
border: 10px solid transparent;
}
circle {
stroke: purple;
stroke-width: 10px;
fill: green;
}
</style>
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<circle cx="50" cy="50" r="55" />
</svg>