svg path relative coordinates code example
Example: html path svg stop
<svg class="icon icon-person" width="25rem" height="25rem" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<style>
path {
stroke: black;
stroke-width: 5 !important;
}
</style>
<g transform="translate(2.5, 0)">
<path d="M0 0 V 200"></path>
</g>
</svg>