All posts tagged tutorial

Create your Own Propaganda Inspired Gig Poster – Photoshop tutorial

GIG poster photoshop tutorial

This photoshop tutorial is on how to design a gig poster with a propaganda theme. I’m sure you’ve seen this technique somewhere and have wondered how it’s done. These posters are actually fairly common, combining a mix of grunge, abstract style and a little bit of outside the box creativity to achieve a great looking poster worthy of print.

 

Read more…

Design a website layout in photoshop – PORTFOLIA

thumb

In this photoshop tutorial we will learn to design a clean website layout. 960 grid system is what we are going to use in this tutorial and lots of photoshop techniques will be dealt as we go through. Before starting, here is final preview of the photoshop layout. Read more…

35 icon design tutorials in Photoshop and Illustrator

thumb

Icon is a work of art that adds beauty to a website. We all know the importance of artistic design in a web page. Icon is another essential aspect of any design as icon plays an important role in making the website user-friendly and striking.

Icon can be grabbed from a free zone or purchased but if you want an icon to match you web page you can get one by creating it yourself. Here are some tutorials that shall help show you how to create beautiful icons and add beauty to your page. Read more…

20 ways to improve website’s readability

thumb

When you read something and can soothingly go on and on with no stress then the message that you want your reader to get is conveyed properly. This style of delivering your write up in such a way that your readers feel the ease of reading is Readability. If you are into the field of writing READABILITY is an important aspect that you can’t avoid. As people visit you to get information and if the information can’t be accessed with ease you wont be able to drag your readers .So to ease your pressure an emphasize on the techniques of readability, here I have collected so awesome easy way to make your reading effective. 

 

Read more…

Tips to work from home with the perfect motivating environment

thumb

If the layout of your workspace is not in your control and you are looking to have the liberty to create your own schedule then you are in a hedge to follow and move towards your own workplace with the exact kind of ambiance you desire. Working environment is that space where you bring out the best you have and cherish through the input that you can give to work. Motivation and efficiency are the very important aspect to get desired result. No matter how hard you work if the output is haywire you can’t value yourself. So if you are a person not ready to chain yourself with a table and desk ,and thinking about working from work here are certain tricks to make it more effective and up to mark. Read more…

Introduction to PHP – Part10

php-part10

Classes and Objects:

The programming paradigm we have learned so far is called Procedural Paradigm. In Procedural programming paradigm, programmer writes a program as collections of independently behaving procedures and makes use of procedure call to access those procedures. As we already discussed in Part8, how procedural programming is a better choice than a simple unstructured programming. It has been a long time, programmers have started thinking about new paradigm called Object oriented paradigm (OOP) which provides a better way to develop big and complex system than procedural programming. We don’t want to confuse readers by putting too complex terms and advantages of OOP at this stage, we will discuss when required. Read more…

Introduction to PHP – Part9

php-part9

Forms:

A form is an area where user can input data. The place in the form where user input data is called form element. A form element can be a text field, text area field, drop-down list, radio buttons and checkbox. In this tutorial we will apply the knowledge we have gained so far and use it with HTML forms. The best thing to use PHP with HTML is that any elements in HTML forms are directly available in PHP scripts. That means the data entered in HTML forms can be manipulated using PHP scripts. Read more…

Introduction to PHP – Part8

php-part8

Function:

A function is a subprogram that performs a specific task when called by the main program. It is always a good practice to divide a huge program into a number of subprograms until elementary functions are reached. More clearly, a huge program should be divided into number of functions, and a function precisely should do one job. Suppose, we have a big program that reads data from user at the beginning, save data to a database and displays the saved data at the end. Read more…

Introduction to PHP – Part7

php-part7

Array:

Array is a systematic collection of data of similar data types that can be accessed by numeric index. Array is one of the most important and oldest data structures that are used to implement other data structures like strings, maps, vector etc. An array in PHP is in fact an ordered map type that associates values to keys. We suggest readers to not get confused with map type here, simply understand PHP array as a data type that can be accessed using keys. Read more…