Table of Contents

About

To style SVG element, you can use CSS stylesheet.

Example

.myBeautifulCircle {
            fill: #D5D8CB;
            stroke: #ECDCC6; 
            stroke-width: 5;
}
<svg height="120">
    <circle 
           cx="60" 
           cy="60" 
           r="50" 
           class="myBeautifulCircle"
           />
</svg>