SVG stands for Scalable Vector Graphics.
SVG is text-based images so you can create an image form just text in an XML formation!
<!DOCTYPE html/> <html> <head> <title>My First SVG!</title> </head> <body> <h1>My First SVG!</h1> <svg width="100px" height="100px"> <rect x="10px" y="10px" width="20px" height="20px" style="fill:lime;" /> <circle cx="50" cy="50" r="20" stroke="red" stroke-width="5" fill="blue" /> </svg> </body> </html>