<img src="circle.svg" alt="a red circle" height="100px" width="100px"/>
.element { background-image: url(/images/image.svg); }
<svg width="100" height="100">
<circle cx="50" cy="50" r="40"stroke="black"
stroke-width="4"fill="red"/>
</svg>
<svg version="1.1"
baseProfile="full"
width="300" height="200"
xmlns="http://www.w3.org/2000/svg">
<rect width="100%" height="100%" fill="black"/>
<circle cx="150" cy="100" r="90" fill="blue"/>
</svg>
<svg width="200" height="250">
<circle cx="400" cy="300" r="200" stroke="red" fill="transparent" stroke-width="5"/>
</svg>
<rect x="100" y="100" width="400" height="300" stroke="black" fill="transparent" stroke-width="5"/>
<line x1="100" x2="500" y1="110" y2="450" stroke="orange" stroke-width="5"/>
<polygon points="50 160, 55 180, 70 180, 60 190, 65 205, 50 195, 35 205, 40 190, 30, 180, 45 180"/>
<path d="M 10,10 L 250,250" fill=“transparent" stroke="black"/>
<path d="M 10,10 L 250,250 30,100 150, 50" fill="transparent" stroke="black"/>
<path d="M50 50 C 50 50, 150 100, 250 50" stroke="black" fill="transparent"/>
<path d="M10 80 C 40 10, 65 10, 95 80 S 150 150, 180 80" stroke="black" fill="transparent"/>
<text x="10" y="10">This is text.</text>
<text>
This is <tspan font-weight="bold" fill="red">bold and red</tspan>
</text>
<text x="350" y="50" style="fill: none; stroke: #000000; font-size: 48px; direction: rtl; unicode-bidi: bidi-override;">This is text</text>
<path id="my_path" d="M 40,40 C 200,100 10,100 520,200"
fill="transparent" />
<text>
<textPath xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#my_path">
This Text is Curved
</textPath>
</text>
<svg width="350" height="60">
<text>
This is <tspan font-weight="bold" fill="red">bold and red</tspan>
</text>
<style><![CDATA[
text{
dominant-baseline: hanging; font: 28px Verdana, Helvetica, Arial, sans-serif;
}
]]></style>
</svg>
<svg class="logo" width="400" height="400" viewBox="0 0 400 400">
<rect class="box" x="0" y="0" width="400" height="400" fill="#56A0D3"/>
</svg>
.box { fill: red; }