blob: cbc7c385f6d78d492a7d43e45cd03da6b78433f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100">
<style>
path {
stroke-width: 3;
stroke: blue;
}
</style>
<path d="M 20 10 h 70" />
<path d="M 20 80 h 70" />
</svg>
|