Drawing another curve or quadratic will not get because the starting point of this curve will be the end point of the first curve ..
function drawArcA(){ var canvas = document.getElementById("myCanvas"); var context = canvas.getContext("2d"); var startA = 45; var yAxis = 160; var yOffset = 100; context.moveTo(startA, yAxis); context.bezierCurveTo(startA, yAxis - yOffset, finishA, yAxis - yOffset, finishA, yAxis); context.lineWidth = 2; context.strokeStyle = "#c15b8a"; context.stroke();}; html
<div class="canvas"> <canvas id="myCanvas" width="1000" height="500"></canvas> </div> 