window.onload = function () {
    var canvas = document.getElementById ( 'logo' );
    var context = canvas.getContext ( '2d' );

    context.beginPath ();
    context.arc ( 150, 150, 125, 0, 2 * Math.PI, true );
    context.fillStyle = '#000000';
    context.fill ();
    context.stroke ();

    context.beginPath ();
    context.arc ( 110, 190, 60, 0, 2 * Math.PI, true );
    context.fillStyle = '#CC0000';
    context.fill ();
    context.stroke ();

    context.beginPath ();
    context.font = '150px UbuntuB';
    context.fillStyle = '#000000';
    context.textAlign = 'center';
    context.fillText ( 'IZAMO', 500, 180 );

    context.beginPath ();
    context.font = '15px UbuntuR';
    context.fillStyle = '#000000';
    context.textAlign = 'center';
    context.fillText ( 'Desarrollo de software', 500, 200 );
}
