svg path position code example

Example 1: SVG arc

SVG <path> arc
 A rx ry x-axis-rotation large-arc-flag sweep-flag(clockwise?) x y
 a rx ry x-axis-rotation large-arc-flag sweep-flag(clockwise?) dx dy

Example 2: 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>

Tags:

Misc Example