Skip to content

Instantly share code, notes, and snippets.

@WooCode
WooCode / gist:1825346
Created February 14, 2012 09:36 — forked from jrk/gist:226604
Minimalist painting in HTML5 canvas + Javascript.
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function draw() {
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
ctx.fillStyle = "black";
ctx.beginPath();