blob: 7b969eb5c7808e3e7b00a95e0c0fe0760523afa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<svg
width='100' height='100' viewbox='0 0 100 100'
xmlns='http://www.w3.org/2000/svg'
>
<style>
.H {
stroke-width: 10;
stroke: hsl(300, 100%, 50%);
}
</style>
<rect
x="0" y="0"
width="100" height="100"
fill="hsl(60, 100%, 0%)"
stroke="hsl(180, 100%, 50%)"
stroke-width="10"
/>
<path class='H' d='M25 15, 25 85'/>
<path class='H' d='M75 15, 75 85'/>
<path class='H' d='M25 50, 75 50'/>
</svg>
|