Skip to content

Instantly share code, notes, and snippets.

@tarwin
Created March 21, 2021 01:46
Show Gist options
  • Save tarwin/fa9cf88d826f33bd0b1b8a1999f107ed to your computer and use it in GitHub Desktop.
Save tarwin/fa9cf88d826f33bd0b1b8a1999f107ed to your computer and use it in GitHub Desktop.
Simple SVG
Display the source blob
Display the rendered blob
Raw
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg
viewBox="0 0 400 400"
style="background-color: #000;"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
>
<circle id="circle1" cx="200" cy="200" r="100" fill="#f00" />
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment