JSFiddle - React, Tailwind, and code Playground
by navinleon
HTML
<html>
<head>
<script>
window.onload = function(){
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");
context.arc(canvas.width / 2, canvas.height / 2, 70, 0, 1 * Math.PI, false);
context.fillStyle = "white";
context.fill();
context.lineWidth = 5;
context.strokeStyle = "red";
context.stroke();
};
</script>
</head>
<body>
<canvas id="myCanvas" width="600" height="250" style="border:1px solid black;">
</canvas>
</body>
</html>