Made using: Khan Academy Computer Science
//background image(getImage("seasonal/xmas-tree"), 0,0,404,396); var oldSpiceMan = getImage("avatars/old-spice-man"); var pickleSize = 50; draw= function() { image(oldSpiceMan, -248, 57, pickleSize, pickleSize); pickleSize = pickleSize + 1 ; }; fill(58, 186, 35); ellipse(198,184, 100, 300); fill(13, 12, 12); //left eye ellipse(178,98, 20,20); fill(255, 255, 255); //pupil ellipse(179,94,10,10); fill(13, 12, 12); //right eye ellipse(214,99, 20,20); //mouth ellipse( 196, 125, 53, 15); fill(255, 255, 255); //tooth rect(187, 117, 8, 9); rect(200, 117, 8, 20); //pupil fill(255, 255, 255); ellipse(218,101,10,10); //right arm fill(0,0,0); rotate(70); ellipse(276, -171, 101, 18); //left arm rotate(-127); ellipse(-89, 224, 101, 18); //right foot ellipse(-154,367, 40,40); //left foot ellipse(-179,326, 40,40);To learn more HTML/CSS, check out these tutorials!