Skip to content

Instantly share code, notes, and snippets.

@markmarkoh
Created May 18, 2013 05:31
Show Gist options
  • Save markmarkoh/5603353 to your computer and use it in GitHub Desktop.
Save markmarkoh/5603353 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>SVG</title>
</head>
<body>
<h1>SVG</h1>
<svg width=500 height=500>
<circle r=200 cx=250 cy=250 stroke=#fa0fa0 stroke-width=20 fill=#bada55></circle>
<text x=0 y=45 font-family=Verdana font-size=45 fill=#fa0fa0 stroke=#bada55 stroke-width=2 >
Hello, out there
</text>
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment