Elliptical Arc CurveSection

by Kelsey Williams

HTML

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/d -->

<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">

  <!-- The influence of the arc flags with which the arc is drawn -->
  <path fill="none" stroke="lime"
        d="
           A 6 4 10 1 1 14,10
					 L6 10" />
 
</svg>

CSS

html,body,svg { height:100% }