blob: 884befb4e331e9a598714fef8dd1a1a7ed9e15f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<svg xmlns="http://www.w3.org/2000/svg">
<style>
circle { fill: red }
.b { fill: green }
.f { fill: green }
</style>
<circle cx="5" cy="10" r="5" class="a">A</circle>
<circle cx="15" cy="10" r="5" class="b">B</circle>
<circle cx="25" cy="10" r="5" class="c">C</circle>
<circle cx="35" cy="10" r="5" class="d">D</circle>
<circle cx="45" cy="10" r="5" class="e">E</circle>
<circle cx="55" cy="10" r="5" class="f">F</circle>
</svg>
|