Skip to content

Instantly share code, notes, and snippets.

@curran
Last active September 24, 2016 14:02
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 curran/098af28142c664535cdf624d09dd90a8 to your computer and use it in GitHub Desktop.
Save curran/098af28142c664535cdf624d09dd90a8 to your computer and use it in GitHub Desktop.
SVG Basics
license: mit
<!DOCTYPE html>
<head>
<title>SVG Basics</title>
</head>
<body>
<svg width=960 height=500 >
<rect x=50 y=125 width=250 height=250 />
<circle cx=480 cy=250 r=118 />
<line x1=628 y1=125 x2=870 y2=360 stroke="black"/>
</svg>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment