JSFiddle - React, Tailwind, and code Playground

by dumptyd

HTML

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

<img src="https://contattafiles.s3.us-west-1.amazonaws.com/tnt8929/MiIBWiry2Nqvg4g/Pasted%20Image%3A%20Aug%203%2C%202018%20-%2010%3A48%3A35pm" alt="" id="laptop">

CSS

body { background-color: #fff; }
canvas {
  width: 1170px; height: 673px;
}
img {
  display: none;
}

JavaScript

const c = document.getElementById('canvas');
const ctx = c.getContext('2d');
const laptop = document.getElementById('laptop');
ctx.drawImage(laptop, 0, 0);