Link to home
Start Free TrialLog in
Avatar of maqskywalker
maqskywalker

asked on

converting svg code to svg file

I have a svg image that looks like this:   http://jsfiddle.net/sa4J4/

This is the code for my svg image.

<svg width="100" height="100">
  <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" />
</svg>

Open in new window


How do I convert this svg code to a file with a .svg file extension?

So for example,  I want to save it to a svg file called YellowCircle.svg


See I want to use this svg image on a web page but I don't want to use the code I just want to use the file.

See on my web page I want to use it like this:

 <a href="http://www.google.com"><img src="images/YellowCircle.svg"></a> 

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Dan Craciun
Dan Craciun
Flag of Romania image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial