Skip to main content

Text Ideas in Design - Turn Typography into exciting designs!

Text Ideas in Design - Turn Typography into exciting designs!

TEXT THAT CREATES BACKGROUNDS

 
Tiling, gradients, bokeh and text design interlink to form an interesting background. Bokeh is the photographic blur effect to get a soft, out-of-focus look.
Extremely effective and relevant use of handwritten text to form a background and an image. The ad for Australia Post says “If you really want to touch someone, send them a letter.”  The visual shows this literally – a letter hugging a girl.

EXTRA-LARGE HEADLINES

Looks like designers are having themselves a field day with big, bold headlines.  The kind that stop you in your tracks and make you read.

This site has the outsized headline in lower case and the content in all caps in a smart yet simple design that optimizes the use of color and type.

Preview in 50 Stunning Photoshop Text Effect Tutorials
Courtesy: LemonDesign   Here every word begins with the letter ‘A’ which takes center-stage in no uncertain terms.   

Create visual impact while leaving an impression with your message. Here’s some big, bold type to speed you on your way!  Choose from an array of exciting fonts.

TEXT THAT TALKS IN PICTURES


Fonts in 50 Stunning Photoshop Text Effect Tutorials
Different forms of the word “coffee” make up this extremely inviting steaming cup of coffee formed completely with text.

Information Highwayman uses text to form the image of a pistol, to support the central idea of ace web content and design content being an ‘attention-thief’. 
Type forms the shape of the number “21” – big and bold – a young designer’s announcement to the world that he has arrived.

TEXT EFFECTS WITH PHOTOSHOP

04 in 50 Stunning Photoshop Text Effect Tutorials
28 in 50 Stunning Photoshop Text Effect Tutorials
3-D text, glowing text, neon text, text on fire, text in stitches, gold text, copper text, smoky text, wood-cut text effect, glass text, reflective text… the possibilities are endless.  Look up some handy tutorials to get yourself up to speed on these terrific text effects.


IMAGES IN TEXT


OUTSIZED LOGOS

With the web getting more and more crowded for space, an extra-large logo gets you noticed and gets a share of your visitor’s mindspace – at least until the next Google click!  Whether he comes back to your site again, however, depends on whether he found your content useful or interesting. This site focuses attention on the designer’s name – Finch, and uses italics, caps and different type faces intelligently in the design.

CONTRASTING FONT STYLES

You can use contrast effectively with thin and bold fonts, graceful flowing fonts or “I mean business” fonts, colored or black and white fonts, caps, sentence case and italics –  experiment with fonts to draw attention to your message. 
Caution:  Before experimenting with this style, just be aware that you need a practiced eye for design and a view for the larger perspective of “What am I trying to say?” 
http://www.childrensministryonline.com/wp-content/uploads/2009/12/contrast-ss-type.gif

The late typographer Carl Dair compared typography to music, in describing how seven kinds of visual contrast in harmony, size, weight, form, structure, texture, color, direction, rhythm make typographic design stand out. The contrast has to be visible and perceptible in order to be noticed.  Different kinds of contrast may be used together much in the same way as a musician would use a chord --- different notes forming a harmonious tone.
http://psdfan.com/wp-content/uploads/2008/12/boldr10.jpg

TEXT AS COLLAGE

Colorful text in different sizes makes a communicative poster.

TYPOGRAPHIC ART

This amazing picture is created with typography, using photo editing software called Artext
Be inspired!
breathtaking_amazing_inspiration_typography.jpg

Today there are exciting tools for designers to play around with type.  It takes a designer who truly cares about the message, to use type not just as eye-candy but as a medium to get the point across expressively.


Comments

Popular posts from this blog

Web Design Ideas

ooking for something to add a little punch to your website design and make it stand apart?  We bring you some ideas to trigger your creative thoughts and entice the user into your site. Use single page design - keep it simple Create unusual icons  – let your imagination come into play Use attractive navigation  – try out something different Draw on circular elements  to attract the viewer - soften hard lines and angles Use good-looking textures Use CSS3 to create animations, transforms and transitions  –  a great alternative to Flash Try out unusual designs for forms Single Page Design Click here for some great ideas on single page designs! Just Dot This scrolling single-page website uses a simple concept – ideas coming to life on a blackboard, with all the changes, scribbles and erasing that refine the process of ideation. The white and red chalk sketches and typography highlight the site’s promise of “Brilliant ideas come to life”. The J...

Dynamic Grid Output Script Using PHP + MySQL Array Data

<?php // Include database connection include_once  'connect_to_mysql.php' ; // SQL query to interact with info from our database $sql  =  mysql_query ( "SELECT id, member_name FROM member_table ORDER BY id DESC LIMIT 15" );  $i  =  0 ; // Establish the output variable $dyn_table  =  '<table border="1" cellpadding="10">' ; while( $row  =  mysql_fetch_array ( $sql )){          $id  =  $row [ "id" ];      $member_name  =  $row [ "member_name" ];         if ( $i  %  3  ==  0 ) {  // if $i is divisible by our target number (in this case "3")          $dyn...