Tuesday, September 25, 2012

logos

I chose to go with Blue Ribbon stables because that is what I know best, although I am still really fond of my animal hoarders/pet shop idea :)

Sunday, September 23, 2012

logos

Kendall's Tack Shop & Saddlery Since I am an avid equestrian I know alot about the equipment and latest fashions that riders all over the circuit are wearing or using. This shop would have everything from saddles, bridles, saddle pads, stirrups, tall boots, casual barn wear, breyer horses to horse cookies. The logo would be a little girl riding a pink pony.  
All Facists! This is a gym/spa and life coaching where you go to work out then get pampered afterwards! The logo could be the tree of life. 
Blue Ribbon Show Stables: A competitive show barn This will be a stable aimed at providing equestrians of all ages an amazing riding and show experience. The stable would travel to all of the best A, AA and even AAA shows across the country. The stables main focus would be training hunter/jumper and show jumping champions. The logo could be a horse and rider jumping.
 Animal Hoarder's and more Pet Shop This would be a pet shop will all sorts of animals and abundance of each animal. This shop could have lots of sales too like buy one cat get three free type thing. The logo could be a lady with a bunch of animals surrounding her. 
Couture Fashions by Kendall This would be a clothing store with my personally designed clothing sold in it. This logo could be my initials or a dress.

Tuesday, September 18, 2012

project 1

Before I began this project I knew I wanted to do a beach theme. I just didn't exactly know where to start, so I began by making my circle (the sun) because I knew how to make that shape. As I started doing more with the image, a picture in my mind took place. It definitely took me awhile to get this picture to how I wanted it. I was messing with the numbers in the codes a lot, but once I got into a groove it became much easier. I think the hardest part for me was the waves, birds and sailboat. It was hard because of figuring out exactly where to place them and moving them around until I found the exact spot I wanted. I'm really pleased with my picture and I think I was successful in created the image that I wanted to portray.

Tuesday, September 11, 2012


<!DOCTYPE HTML>
<html>
<head>
<script>
window.onload = function() {
var canvas = document.getElementById("mycanvas");
var context = canvas.getContext("2d");

///////////////////////// start below this line

//Heart
context.beginPath();
context.moveTo(400,200);
context.quadraticCurveTo(600,50,400,500);
context.lineWidth = 10;
context.lineCap = 'round';

// line color
context.strokeStyle = 'rgb(330,0,300)';
context.fillStlye = 'rgb(330,0,300)';
context.fill();
context.stroke();


context.beginPath();
context.moveTo(400,200);
context.quadraticCurveTo(200,50,400,500);
cpntext.lineWidth = 10;
context.fillStyle = 'rgb(330,0,300);
context.fill();
context.stroke();


/////////////////////////////// end below this line

};

</script>
</head>
<body>
<canvas id="myCanvas" width="800" height="600"></canvas>
</body>
</html>