Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to draw a hollow circle in SVG?
To draw a hollow circle in SVG, use the <circle> element. For that, use fill=”none” and draw the outline.
SVG stands for Scalable Vector Graphics and is a language for describing 2D-graphics and graphical applications in XML and the XML is then rendered by an SVG viewer. Most of the web browsers can display SVG just like they can display PNG, GIF, and JPG.

Example
You can try to run the following code to learn how to draw a hollow circle in SVG
<!DOCTYPE html> <html> <head> <title>HTML5 SVG Hollow Circle</title> <head> <body> <svg id="svgelem" height="200" xmlns="http://www.w3.org/2000/svg"> <circle cx="100" cy="50" r="40" stroke="black" stroke-width="7" fill="none" /> </svg> </body> </html>
Output
Advertisements

