Sunday, September 28, 2014

Project two LOGOS


I designed this Logo because I wanted to do something that connect both travel and globe! my main idea is to create a logo that present my imaginary travel agency! I enjoyed doing this project. its is my first logo so I wanted to do something that I love. traveling is a joy to be and I wanted my agency to have the best deals for all people. it is an international company that gave people the best prices. I went for a classic globe colors! and the airplane is gray with a pop of orange! nothing overwhelming and because it is an international agency the colors should be readable for all nationalities. :D

Tuesday, September 23, 2014

Calligramme ( Coffee )


I chose to do coffee in my calligramme, I drink coffee every day. I truly enjoyed doing this project. playing with letters and words to create shapes! it is great to get the opportunity to play around with fonts. As a graphic designer playing with typography is so much fun.

Tuesday, September 16, 2014

Logo Sketches


Logo Analysis





The most successful logo in the world! I wonder if anyone doesn't know google. this logo is stuck in very single mind of people. the audience are basically all kind of people and from all over the WORLD. this is extremely successful because it works for everything. the colors are bright and fun. I love that google sometimes change the design on the logo depend on the month of occasion such as thanksgiving, Halloween, and world cup.





Adidas is manufacturer sports clothing and accessories and the most important shoes! it is basically The Three Stripes. I think this is one of the global successful logos ever. I love this brand and seeing the logo makes u think of sports. The target audience for adidas is everyone! from young girls and boys to elderly people because they have something for every age. I love the classic black and wight but lately they are exploding with colors and I see it very bright and fun and gave the energy just by looking at them. I think they are really successful because seeing the logo makes people want to try new thing because they trust the company.




BMW as soon as we see thing logo we thing of great cars. luxurious is the thing that people think when they see this logo. internationally and globally. the colors are chosen very nicely I think its calm with a hit of pop color which is blue but also a soft blue. I also think that blue is a rich color and play a great roll in this logo. this car is made for audience that are high class because of the prices not all people can buy BMW cars they cost. I see this logo as a very successful logo compared to other logos, very classy and gave you the feeling of perfection.


It is the internet world now! Skype is a huge thing in our society now. the shape looks like a cloud. i think it works because the could can take you to a really far place. the audience for this is people that live away from each other mostly. all kind of ages know this logo I believe it is really successful the color is great works beautifully.

COFFEE is the best thing in the world and this logo percent it in the best way! seeing this logo makes people immediately think of coffee. the audience are people who loves coffee. I don't think kids share a big part on their audience target. it is mainly from 18 and up. I see this super successful. the style looks like a mermaid, I really like how everything is green and fresh. I also think that the green present the coffee beans.


5 Ideas


5 Ideas for logos!

1. Company that sells houses (real estate), am thinking a remodel for high class people.

2. Company that cleans houses, but they have special cleaning tools that cleans everything, they charge by the hour.

3. A traveling agency! that focus on the price range and gave people the best deals to travel all over the world. from plane tickets to hotels and car rental.

4. A cool magazine logo that relates to makeup and fashion.

5. business and wedding cards company.

Abstract



                                                                 

Abstract !

 HTML5

 var canvas = document.getElementById('myCanvas');
      var context = canvas.getContext('2d');
      context.rect(0, 0, canvas.width, canvas.height);

      // add linear gradient
      var grd = context.createLinearGradient(0, 0, canvas.width, canvas.height);
      // light blue
      grd.addColorStop(0, '#8ED6FF');   
      // dark blue
      grd.addColorStop(1, '#004CB3');
      context.fillStyle = grd;
      context.fill();
      
   
      
           var canvas = document.getElementById('myCanvas');
      var context = canvas.getContext('2d');
      var rectWidth = 400;
      var rectHeight = 500;
      var rectX = 70;
      var rectY = 50;
      var cornerRadius = 50;

      context.beginPath();
      context.moveTo(rectX, rectY);
      context.lineTo(rectX + rectWidth - cornerRadius, rectY);
      context.arcTo(rectX + rectWidth, rectY, rectX + rectWidth, rectY + cornerRadius, cornerRadius);
      context.lineTo(rectX + rectWidth, rectY + rectHeight);
      context.lineWidth = 5;
      context.stroke();

    var canvas = document.getElementById('myCanvas');
      var context = canvas.getContext('2d');

      context.beginPath();
      context.arc(288, 360, 200, 0, Math.PI, false);
      context.closePath();
      context.lineWidth = 5;
      context.fillStyle = 'purple';
      context.fill();
      context.strokeStyle = '#550000';
      context.stroke();
      
         var canvas = document.getElementById('myCanvas');
      var context = canvas.getContext('2d');

      // butt line cap (top line)
      context.beginPath();
      context.moveTo(20, canvas.height / 2 - 50);
      context.lineTo(canvas.width - 20, canvas.height / 2 - 50);
      context.lineWidth = 20;
      context.strokeStyle = 'black';
      context.lineCap = 'butt';
      context.stroke();

      // round line cap (middle line)
      context.beginPath();
      context.moveTo(20, canvas.height / 2);
      context.lineTo(canvas.width - 200, canvas.height / 2);
      context.lineWidth = 20;
      context.strokeStyle = 'black';
      context.lineCap = 'square';
      context.stroke();

      // square line cap (bottom line)
      context.beginPath();
      context.moveTo(20, canvas.height / 2 + 50);
      context.lineTo(canvas.width - 200, canvas.height / 2 + 50);
      context.lineWidth = 20;
      context.strokeStyle = 'black';
      context.lineCap = 'square';
      context.stroke();
      
     var canvas = document.getElementById('myCanvas');
      var context = canvas.getContext('2d');

      context.beginPath();
      context.moveTo(100, 100);
      context.quadraticCurveTo(400, 0, 388, 150);
      context.lineWidth = 5;

      // line color
      context.strokeStyle = 'orange';
      context.stroke();
            
               var canvas = document.getElementById('myCanvas');
      var context = canvas.getContext('2d');

      context.beginPath();
      context.moveTo(70, 70);
      context.quadraticCurveTo(300, 0, 388, 150);
      context.lineWidth = 5;

      // line color
      context.strokeStyle = 'red';
      context.stroke();
       
                    var canvas = document.getElementById('myCanvas');
      var context = canvas.getContext('2d');

      context.beginPath();
      context.moveTo(60, 5, 0);
      context.quadraticCurveTo(200, 0, 388, 150);
      context.lineWidth = 5;

      // line color
      context.strokeStyle = 'orange';
      context.stroke();

             var canvas = document.getElementById('myCanvas');
      var context = canvas.getContext('2d');

      context.beginPath();
      context.moveTo(40, 40);
      context.quadraticCurveTo(100, 0, 388, 150);
      context.lineWidth = 5;

      // line color
      context.strokeStyle = 'red';
      context.stroke();


Monday, September 15, 2014

Biography

Hello :D
My name is Sara Althaqafi I am from Saudi Arabia and I am married. I am majoring in Graphic Design. I am a student at University of Tampa. I have been living in the State for two and a half years. I came for school and I really enjoy living in Tampa, it is cozy and warm, reminds me of my home country. I personally enjoy, love and appreciate art, I want to learn a lot about it art from basics to the most detail. I am looking forward to learn all about the great basics of adobe that I will be using in future.