Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 11, 2011 09:55 pm GMT

The Top 8 Placeholders for Web Designers


In the last year, there’s been a wave of helpful placeholder services. What’s a placeholder? Well, when you’re working on a new website, isn’t it a waste of time to use stock images, cropped to the right dimensions? A placeholder service allows you to automatically use a random image at the desired dimensions with minimal effort.

In the last week, I’ve compiled a list – in no particular order – of what I consider to be the most useful and flexible placeholder services on the web. Certainly, for most of you, you’ll end up picking one or two of the following to use in your own projects.


1 – PlaceKitten

PlaceKitten

A quick and simple service for getting pictures of kittens for use as placeholders in your designs or code. Just put your image size (width & height) after our URL and you’ll get a placeholder.

Usage

<img src="https://placekitten.com/200/300" /><!-- Black and White --><img src="https://placekitten.com/g/200/300" />

Follow the placekitten.com url with your desired dimensions. For example, if I needed a 450 x 300 placeholder image, I’d set the source attribute of an image tag to: https://placekitten.com/450/300.


2 – Placehold.it

Placehold

A quick and simple image placeholder service.

Usage

<img src="https://placehold.it/350x150"><!-- Set Colors --><img src="https://placehold.it/350x150/292929/e3e3e3"><!-- Add Text --><img src="https://placehold.it/350x150&text=Hello World"><!-- Set Image Type --><img src="https://placehold.it/350x150.png&text=Hello World"><img src="https://placehold.it/350x150.gif&text=Hello World"><img src="https://placehold.it/350x150.jpg&text=Hello World">

Note that, with this service, you set your dimensions more traditionally, rather than separating the widths and heights into segments.

Placehold.it is a bit different in that, rather than using photos for placeholders, it instead uses more traditional solid color images, which might be more appealing to some designers.


3 – SheenHolders

SheenHolders

Add some Sheen to your designs and prototypes with Charlie Sheen placeholder pictures. Simply change the width and height in the URL to get your custom placeholder.

Usage

https://sheenholders.com/421x550<img src="https://sheenholders.com/421x550" />

If you want your web designs to be winning, then you need the Sheen!


4 – FlickrHoldr

FlickrHolder

Get placeholders related to the site you are developing, by pulling images from flickr based on tags.

Usage

FlickrHolder is helpful in that, in addition to using Flickr photos as the placeholders, it also allows you to choose a desired tag as the third segment. You can even choose to display photos in black and white.

<img src="https://flickholdr.com/200/300" /><img src="https://flickholdr.com/200/300/sea,sun" alt="" /><img src="https://flickholdr.com/200/300/sea,sun/bw" alt="" />

5 – LoremPixum

Placeholder Images for every case. Webdesign or Print. It’s simple and absolutely free!

Usage

<!-- Default --><img src="https://www.lorempixum.com/400/100" alt="" /><!-- Black and White --><img src="https://www.lorempixum.com/g/400/100" alt="" /><!-- Tagged --><img src="https://www.lorempixum.com/g/400/100/sports" alt="" />

6 – PlaceDog

PlaceDog

Dogs are so superior to felines. Just choose your dimensions in the pathname and share the doggie love on your projects.

Usage

<img src="https://placedog.com/400/300" alt="" /><!-- Black and White --><img src="https://placedog.com/g/400/300" alt="" />

7 – DummyImage

DummyImage

Usage

DummyImage is particularly nice, when compared to some of its competitors, in that it offers a great deal of flexibility. Let’s take a look at some of the available options.

<!-- If you only pass a width, a square will be generated --><img src="https://dummyimage.com/600" alt="" /><!-- Width and Height --><img src="https://dummyimage.com/600x400" alt="" /><!-- Apply background and text colors --><img src="https://dummyimage.com/600x400/292929/e3e3e3" alt="" /><img src="https://dummyimage.com/600x400.png/292929/e3e3e3" alt="" /><img src="https://dummyimage.com/600x400.gif/292929/e3e3e3" alt="" /><img src="https://dummyimage.com/600x400.jpg/292929/e3e3e3" alt="" /><img src="https://dummyimage.com/800x600&text=Your Mom Goes to College" alt="" />or with background and text colors...<img src="https://dummyimage.com/800x600/292929/e3e3e3&text=Your Mom Goes to College" alt="" />

8 – Griddle.it

Griddle.it

A clean and simple way to help align your layouts. No complex grid frameworks necessary.

Certainly, Griddle.it is unique compared to its peers because its focus is on creating grid images, which can then be applied to the background of your web design during production. View a live demo here.

Usage

Apply a background grid takes the following format: https://griddle.it/[total width]-[number of columns]-[gutter size].

/* Generate a 960px grid, with 12 columns and 30px gutter */body {  background: url(https://griddle.it/960-12-30) repeat-y center top;}

Conclusion

So yeah – they’re all rather similar to one another. At this point, you only need to choose one or two that you find to be the easiest to remember. But one thing is for sure: these definitely save a lot of time!


Original Link: http://feedproxy.google.com/~r/nettuts/~3/ODoHHnOYlAs/

Share this article:    Share on Facebook
View Full Article

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code