Posts

Collage

Image

Hanging Out!

Image
The original picture is me hammocking between palm trees, but I photoshopped myself amongst some daring hammockers.

Buster In Progress

Image

Cartoon in Illustrator

Image
First Version: Final:  This project was difficult at first: however, once I got the hang of the pen tool, it was easy to navigate. Playing with the colors was a fun way to change up the image!  -Deanna 

Kombella Co.

Image
I love the outdoors, as I spend most of my time outside. I live for spending entire days at the beach and hiking in the mountains. Because the environment holds such a large importance to me, I created a company that helps protect it. Kombella is a surf and hike company, and a portion of their proceeds would go to organizations such as 4Ocean, and Clean Ocean Action. 

Recreating the Quicksilver Logo

Image
First HTML coding Logo Design. Based on the brand, Quicksilver.  My Logo: Original Logo:  Code:  <!DOCTYPE HTML> <html> <head> <script> window.onload = function() { var canvas = document.getElementById("myCanvas"); var context = canvas.getContext("2d"); //////////////////////////////////////  //#BCF6F5 light blue  //yellow #FFFED8 //Background context.beginPath(); context.rect(0,0,800,600) context.fillStyle = '#BCF6F5' context.fill(); context.stroke(); //Big C Bezier  context.beginPath(); context.moveTo(450, 425); context.bezierCurveTo(200, 450, 250, 100, 450, 200); context.strokeStyle = '#FFFED8' context.lineWidth = 30; context.stroke(); //CURVE left top take 2  context.beginPath(); context.moveTo(155, 320); context.bezierCurveTo(250,320, 220, 70, 555, 220); context.lineTo(455, 205); context.quadraticCurveTo(250, 135, 290, 325); co