Skip to content

Instantly share code, notes, and snippets.

@devdays
Created November 30, 2014 21:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/75c95c22a87252a9f5a0 to your computer and use it in GitHub Desktop.
Save devdays/75c95c22a87252a9f5a0 to your computer and use it in GitHub Desktop.
Circle using an inline SVG
<!DOCTYPE html>
<html>
<head>
<title>SVG Inline</title>
</head>
<body>
<h1>SVG Inline</h1>
<!-- Create the SVG pane. -->
<svg height="100" width="100">
<!-- Create the circle. -->
<circle cx="50" cy="50" r="50" fill="gold" id="circ" />
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment