Sunday, September 23, 2012

5 Buisness Ideas :)

Dali's Deli:
This company will be known for selling all different kinds of subs. A place you can eat anything from sandwiches to wraps. Soups, pasta, salads anything you name it. This logo would have a deli sign with (Dali's Deli) and food(sandwiches in it)

Sports Shack:
This would be a Sports store that would be affordable equipment for any sport in the world. It would be a product line that would be known to have equipment for any worldwide sport, and it would be much cheaper than the other sport stores. You could also switch out equipment and rentals as well. The logo would be all the sports equipment with a world sign.

Le Couture Shoe Company: 
A shoe lover's paradise, any kid of shoe as well as any name brand. This store will be known for affordable but good branded and looking shoes. Shoes will be sold to go from anyone of all ages. The Logo will have Le Couture and a commonly used shoe. And a catch phrase when  though of one.

Viva La Belleza:
This will be a Beauty Parlor as well as a spa. Facials and all beauty care products will be sold and done there. It is open for all both women and men, different treatments of course. The logo will have this phrase, and beauty products.

Chocoholic Island:
A place for chocolate lovers, a candy shop filled with any sort of candy known to man. Even an ice cream bar on the side. There will even be a section for people who have to have sugar free candy. Chocoholic Island will be a place for anyone who has that craving for candy. The logo will have a beach paradise scene with candy signs on it.


5 Popular Logos

Starbucks is the largest coffee house retail company in the world at the moment, and is the most popular brand of coffee that is known worldwide. Starbucks is easily known by their circular symbol and siren in the middle. The common colors are green black and white. Starbucks is easily known for their not so complicated symbol anywhere. This logo has not been changed much throughout the years but the only bad part about it, is if it is printed very small it looses its look and not everyone can recognize it so easily.

The Hollister brand is known by a lot of the teenagers and young adults in the US. It can be seen everywhere, even though some other brands use this bird as well, anyone who sees this mostly first think it is the Hollister name brand bird. This bird is used universally known for other meanings as well as the whole beach brand look. But it is a logo that even though it is small can still be recognized at any time.
This Roxy logo does not simply correlate not with just one brand but with two. It also is the Quicksilver brand when you take out half of the heart and tilt it to the side. The Roxy logo also resembles a heart which appeals towards women and girls all around, and it is highly popular on surf brand names. If this logo is made smaller it is still recognized due to the not complicated logo.

The MTV logo sign is recognized worldwide due to the popular brand through the ages. Although it has changed its exact logo look, everyone has recognized it for the M and the TV. This logo is very memorable and popular for what it stands for. At first it was just known for constant music and music videos, now it known for so much more and is still very popular even though they don't play much music on this channel anymore. The logo usually does not contain the music television wording under the big M and TV. This logo could be made small and still be known to not make a difference.

Domino's Pizza is known as the second largest franchise of pizza chains in the US. It is known for it's red, white, and blue color scheme. They believe it is about representing the American pizza line and when people look at this they see the represent our country. And the Domino's actually has the domino's in the logo. If anyone sees this logo they immediately think it's the pizza company.


Tuesday, September 18, 2012

Get To Know Me:

My names Daliana Gonzalez-Hernandez
But, everyone calls me Dali
I am from Orlando, but Puerto Rican
I am majoring in Biology
My favorite color is Pink
I am a full time Student
I used to play Soccer
I plan on going to Medical School and becoming a Radiologist
I love trying new things, (a good reason to be in this class)
I expect to learn more about the new technology around me, as well as new skills. 
There will be more posts to come!! :)

Project I


I decided to create a house scenery,with the HTML codes, because i thought it would be as colorful as I thought it would be. I started my layout with a basic rectangle for the canvas itself. Then added the color of the sky, later it took me some trouble to add the hill and make it linear, my one trouble was making the sidewalk as well as lining up the house correctly. I used the quadratic curve for the hill and the bezier curve for the sidewalk. The other things like the door, sun, rays, etc were not as complicated as I thought it would be. My canvas piece turned out better than I expected, even though it looks like a child drew this(haha). But for someone who joined the class later than usual, and got the hang of it, its decent :)!


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

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


//rectangle
context.beginPath();
context.rect(0, 0, 800, 600);
//sky
  context.fillStyle = 'rgb(100, 200, 255)';
  context.fill();
context.stroke();


//hill
context.beginPath();
context.moveTo(0,500);
context.quadraticCurveTo(400, 425, 800, 500);
 context.fillStyle = 'rgb(0,255,0)';
  context.fill();
context.stroke();

//grass color
context.beginPath();
  context.rect(0, 500, 800, 100);
  context.fillStyle = 'rgb(0,255,0)';
  context.fill();
  context.strokeStyle = 'rgb(0,255,0)';
context.stroke();

//house square
context.beginPath();
  context.rect(150, 255, 500, 220);
  context.fillStyle = 'rgb(245,210,120)';
  context.fill();
  context.strokeStyle = 'black';
context.stroke();

//sidewalk
context.beginPath();
context.moveTo(450,475)
context.bezierCurveTo(530, 520, 510, 540, 320, 600);
context.strokeStyle = 'gray'
context.lineWidth = 5;
context.stroke();

//sidewalk pt 2
context.beginPath();
context.moveTo(350,475)
context.bezierCurveTo(430, 510, 510, 540, 120, 600);
context.strokeStyle = 'gray'
context.lineWidth = 5;
context.stroke();

//sun
context.beginPath();
context.arc(0, 0, 100, 4 * Math.PI, 1 * Math.PI, false);
context.fillStyle = 'yellow';
context.fill();
context.lineWidth = 2;
context.strokeStyle = 'black';
context.stroke();

//cloud
 // begin custom shape
        context.beginPath();
        context.moveTo(170, 80);
        context.bezierCurveTo(130, 100, 130, 150, 230, 150);
        context.bezierCurveTo(250, 180, 320, 180, 340, 150);
        context.bezierCurveTo(420, 150, 420, 120, 390, 100);
        context.bezierCurveTo(430, 40, 370, 30, 340, 50);
        context.bezierCurveTo(320, 5, 250, 20, 250, 50);
        context.bezierCurveTo(200, 5, 150, 20, 170, 80);

        // complete custom shape
        context.closePath();
        context.lineWidth = 5;
        context.fillStyle = "white";
        context.fill();
        context.strokeStyle = "#8ED6FF";
        context.stroke();
     
//roof
  // miter line join (left)
        context.beginPath();
        context.moveTo(150, 255);
        context.lineTo(415, 50);
        context.lineTo(650, 255);
        context.strokeStyle = 'black';
          context.fillStyle = 'red';
  context.fill();
        context.lineJoin = "miter";
        context.stroke();

//door
context.beginPath();
context.rect(350, 325, 100, 150);
context.fillStyle = 'purple';
  context.fill();
context.stroke();

//door knob
context.beginPath();
context.arc(430, 400, 2, 0 , 2 * Math.PI, false);
context.stroke();


//windows
context.beginPath();
context.arc(250, 350, 30, 0 , 2 * Math.PI, false);
context.fillStyle = 'white';
  context.fill();
context.stroke();

//windows
context.beginPath();
context.arc(550, 350, 30, 0 , 2 * Math.PI, false);
context.fillStyle = 'white';
  context.fill();
context.stroke();

//sun rays
context.beginPath();
  context.moveTo(100,15);
  context.lineTo(150,75);
  context.strokeStyle = 'yellow';
  context.stroke();
 
//sun rays
context.beginPath();
  context.moveTo(80,65);
  context.lineTo(150,150);
  context.stroke();

//sun rays
context.beginPath();
  context.moveTo(40,95);
  context.lineTo(97,185);
  context.stroke();

//sun rays
context.beginPath();
  context.moveTo(16,105);
  context.lineTo(30,200);
  context.stroke();

//window lines
context.beginPath();
  context.moveTo(550,320);
  context.lineTo(550,380);
   context.strokeStyle = 'black';
  context.stroke();

//window lines
context.beginPath();
  context.moveTo(250,320);
  context.lineTo(250,380);
   context.strokeStyle = 'black';
  context.stroke();

//window lines
context.beginPath();
  context.moveTo(222,354);
  context.lineTo(277,354);
   context.strokeStyle = 'black';
  context.stroke();
 
  //window lines
context.beginPath();
  context.moveTo(522,354);
  context.lineTo(577,354);
   context.strokeStyle = 'black';
  context.stroke();

//birds
context.beginPath();
context.moveTo(599, 125);
context.lineTo(650, 150);
context.lineTo(699, 125);
context.lineJoin = "miter";
context.strokeStyle = 'black'
context.stroke();

//birds
context.beginPath();
context.moveTo(699, 25);
context.lineTo(750, 50);
context.lineTo(799, 25);
context.lineJoin = "miter";
context.strokeStyle = 'black'
context.stroke();



////////////////////////////////////// end above this line ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ

};

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

Wednesday, September 12, 2012

Heart :)

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

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

var endX = 275;
var endY = 315;
var controlX1 = 300;
var controlY1 = 0;
var controlX2 = 160;
var controlY2 = 220;

var endX2 = 400;
var endY2 = 500;
var controlX3 = 350;
var controlY3 = 375;

var endX3 = 510;
var endY3 = 335;
var controlX4 = 450;
var controlY4 = 375;

var endX4 = 400;
var endY4 = 200;
var controlX5 = 650;
var controlY5 = 200;
var controlX6 = 520;
var controlY6 = 0;

var grdstartX = 0;
var grdstartY = 250;
var grdendX = 800;
var grdendY = 250;




//Rectangle
context.beginPath();
  context.rect(0, 0, canvas.width, canvas.height);
  //context.fillStyle = 'rgb(100, 100, 255)';
  var grd = context.createLinearGradient(grdstartX, grdstartY, grdendX, grdendY);
  grd.addColorStop(0, 'rgb(200, 200, 255)');
  grd.addColorStop(1, 'rgb(100, 100, 255)');
  context.fillStyle = grd;
  context.fill();
context.stroke();


//Heart
context.beginPath();
context.moveTo(400,200);
context.bezierCurveTo(controlX1, controlY1, controlX2, controlY2, endX, endY);
context.quadraticCurveTo(controlX3, controlY3, endX2, endY2);
context.quadraticCurveTo(controlX4, controlY4, endX3, endY3);
context.bezierCurveTo(controlX5, controlY5, controlX6, controlY6, endX4, endY4);
context.fillStyle = 'rgb(255, 0, 0)';
context.fill();
context.lineWidth = 20;
context.lineCap = 'round';
context.strokeStyle = 'rgb(255, 150, 150)';
context.stroke();






////////////////////////////////////// end above this line ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ

};

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