DONT ADD ANYTHING HERE!

Code

JavaScript

    ctx.font = "50px serif";
    ctx.strokeStyle = "green";
    ctx.lineWidth = "1"
    ctx.strokeText("Hello", 20, 50)
    ctx.fillStyle = "red";
    ctx.fillText("World", 80, 120) 

HTML

    <canvas id="canvas_one"></canvas> 

CSS

    canvas {
        background-color: lightgoldenrodyellow;
    } 

Commands

  1. ctx.font = "50px serif"
  2. ctx.strokeStyle = "green"
  3. ctx.lineWidth = "1"
  4. strokeText("text", x, y)
  5. fillStyle = "red"
  6. ctx.fillText("text", x, y)

References