Created
May 18, 2013 05:31
-
-
Save markmarkoh/5603353 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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