<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TemplatesFactory.Net Articles</title>
	<atom:link href="http://www.templatesfactory.net/articles/feed" rel="self" type="application/rss+xml" />
	<link>http://www.templatesfactory.net/articles</link>
	<description>TemplatesFactory.Net Articles!</description>
	<lastBuildDate>Mon, 15 Feb 2010 22:03:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Most Important HTML and CSS Tips for Wordpress Newbies</title>
		<link>http://www.templatesfactory.net/articles/the-most-important-html-and-css-tips-for-wordpress-newbies.html</link>
		<comments>http://www.templatesfactory.net/articles/the-most-important-html-and-css-tips-for-wordpress-newbies.html#comments</comments>
		<pubDate>Mon, 15 Feb 2010 22:03:11 +0000</pubDate>
		<dc:creator>Jennifer</dc:creator>
				<category><![CDATA[Website Design]]></category>
		<category><![CDATA[Website Templates]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://www.templatesfactory.net/articles/?p=1124</guid>
		<description><![CDATA[I know that some of you are probably designers yourselves, or are at least somewhat familiar with CSS and Wordpress theme styling. However, I usually work with writers. Many of them love Wordpress for hosting either blogs or professional websites, but they often aren&#8217;t sure how to make simple CSS and HTML changes to improve [...]]]></description>
			<content:encoded><![CDATA[<p>I know that some of you are probably designers yourselves, or are at least somewhat familiar with CSS and Wordpress theme styling. However, I usually work with writers. Many of them love Wordpress for hosting either blogs or professional websites, but they often aren&#8217;t sure how to make simple CSS and HTML changes to improve their designs or alter a free theme they&#8217;d like to customize.</p>
<p>I&#8217;m sure there are plenty of bloggers outside of the writing community with the same problem. They use themes out-of-the-box not necessarily because they want to but because they don&#8217;t know how to change things. With those Wordpress or CSS newbies in mind, let&#8217;s take a non-technical look at some quick HTML and CSS tips and tricks a new Wordpress user can use to improve their blog design. Note: I&#8217;m not a designer &#8212; these are meant to be practical tips to help non-coders work around common Wordpress design issues on their own. I do not claim that they&#8217;re necessarily the <em>best</em> solutions in all cases. If you&#8217;d like to share other methods, please do so in the comments.</p>
<p><strong>1. Replace your blog title with a logo<br />
</strong></p>
<p>By default, your Wordpress theme might include a blog title link in the header, but to customize and brand your site you want to replace it with a logo. Here&#8217;s how to do that. First upload your logo image and have the URL / address for the file on-hand. Then go to the Wordpress templates editor in your admin panel and find header.php. You might see something like this:</p>
<blockquote><p>&lt;h1&gt;&lt;a href=&#8221;&lt;?php echo get_option(&#8216;home&#8217;); ?&gt;/&#8221;&gt;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;/a&gt;&lt;/h1&gt;</p></blockquote>
<p>That code adds a link to your home page (with the text of your blog title). On my business site, this is what the site name looks like without a logo:</p>
<p><img class="aligncenter size-full wp-image-1146" title="pbwnologo" src="http://www.templatesfactory.net/articles/wp-content/uploads/2010/02/pbwnologo.gif" alt="Pro Business Writer with No Logo" width="499" height="81" /></p>
<p>If you want to use a logo image instead, you would remove everything between the &lt;h1&gt; tags and replace it with something like this:</p>
<blockquote><p>&lt;a href=&#8221;YourBlogURL.com&#8221;&gt;&lt;img src=&#8221;WebAddressOfYourLogoGoesHere&#8221; alt=&#8221;YourBlogTitleGoesHere&#8221;/&gt;</p></blockquote>
<p>That code will add your logo in place of the linked blog title. Here is what my site&#8217;s name looks like when making the change:</p>
<p><img class="aligncenter size-full wp-image-1147" title="Pro Business Writer Logo" src="http://www.templatesfactory.net/articles/wp-content/uploads/2010/02/pbwwithlogo.gif" alt="Pro Business Writer Logo" width="424" height="104" /></p>
<p><strong>2. Add margins around images or theme areas.</strong></p>
<p>Is your new logo image all the way at the top of the screen or too far to the left? You can fix that by adding margins around the image. Here&#8217;s what your logo might look like without margins or padding:</p>
<p><img class="aligncenter size-full wp-image-1152" title="logoalign1" src="http://www.templatesfactory.net/articles/wp-content/uploads/2010/02/logoalign1.gif" alt="" width="530" height="167" /></p>
<p>Let&#8217;s look at some inline CSS you can use to adjust the margins / positioning of a specific image. Go back into your header.php file and find the logo code you just added. We&#8217;re going to wrap that code in div tags (the new code is bolded below). Here&#8217;s what you would get (and yes, I know that purists would prefer to do this in the stylesheet, but I&#8217;m sticking to inline here to give non-CSS folks easier control over individual images):</p>
<blockquote><p><strong>&lt;div style=&#8221;margin: 9px 6px 9px 12px&#8221;&gt;</strong>&lt;a href=&#8221;YourBlogURL.com&#8221;&gt;&lt;img src=&#8221;WebAddressOfYourLogoGoesHere&#8221; alt=&#8221;YourBlogTitleGoesHere&#8221;/&gt;<strong>&lt;/div&gt;</strong></p></blockquote>
<p>This adds a 9 pixel margin above the image, 6 pixels to the right, 9 pixels at the bottom, and 12 pixels on the left. You can use any margins that you want to &#8212; whatever works for your site&#8217;s design. Here&#8217;s what mine looks like when adjusted:</p>
<p><img class="aligncenter size-full wp-image-1153" title="logoalign2" src="http://www.templatesfactory.net/articles/wp-content/uploads/2010/02/logoalign2.gif" alt="" width="516" height="165" /></p>
<p>Note: If your theme&#8217;s stylesheet already moves your logo section away from the template edges, you might not need to do this, but you can still try it to see how it makes the logo move and apply the styling to other images as needed.</p>
<p><strong>3. Change colors.</strong></p>
<p>Sometimes you&#8217;ll find Wordpress themes you love, but you aren&#8217;t quite crazy about the color scheme. Fortunately that&#8217;s a very easy fix. Colors are represented by six-digit hex color codes. To change a color, you find the existing code in your stylesheet (style.css for most themes) and you swap it out with the hex code for the color you really want.</p>
<p>Take a look at my <a title="business writing blog" rel="nofollow" href="http://probusinesswriter.com/blog/">business writing blog</a> as an example. I designed this site to be minimalist. As you can see on the live version the background is white. What if I wanted to give the body (the area surrounding the main theme / content area) a dark gray background for some contrast?</p>
<p>First, I would find the body style block in the stylesheet. It looks like this:</p>
<blockquote><p>body {<br />
background:#ffffff;<br />
font-family: arial;<br />
font-size: 14px;<br />
padding:6px;<br />
}</p></blockquote>
<p>The #ffffff hex code represents the white background. Next I have to choose my desired shade of gray and find its hex code. I can do that using image editing software or by referring to a <a rel="nofollow" href="http://www.taoti.com/images/colorchart.gif">hex color chart</a>. I&#8217;m going to choose the dark gray with the hex code of #333333. To make my body background gray, I just edit my style.css file and <strong>replace #ffffff with #333333</strong>. Here is the result:</p>
<div id="attachment_1134" class="wp-caption alignnone" style="width: 590px"><img class="size-full wp-image-1134" title="pro business writer" src="http://www.templatesfactory.net/articles/wp-content/uploads/2010/02/probusinesswritergray.gif" alt="Pro Business Writer - Gray Background" width="580" height="280" /><p class="wp-caption-text">Pro Business Writing Blog with a Gray Background</p></div>
<p><strong>4. Change default font sizes.</strong></p>
<p>Some themes have unusually small font sizes by default (I&#8217;m always baffled by how many designers think it&#8217;s a good idea). It can negatively impact readability. Again, it&#8217;s an easy fix. Just find the font size in your stylesheet and increase it. For example, the font size for the main blog content on the blog mentioned earlier is 14 px (you can see that in the body style code above).</p>
<p>I wanted my blog post headlines to be bigger though &#8212; 18px. So in my stylesheet I simply went to the area dictating h1 tag font style (h1 tags are your primary headings, like your blog title perhaps). Here is what it shows now:</p>
<blockquote><p>.post h1 {<br />
<strong>font-size: 18px;</strong><br />
color: #ff0033;<br />
padding-bottom: 12px;<br />
padding-top: 12px;<br />
}</p></blockquote>
<p>Note: The proper section of your stylesheet might be titled differently. For example, it might be called content instead of post, or you might not have post H1 tags &#8212; just default H1 tag styles that apply everywhere  on the site.</p>
<p>This is how the blog looks now, with post headings a larger font size than the post body text:</p>
<p><img class="alignnone size-full wp-image-1137" style="border: 1px solid black;" title="font size" src="http://www.templatesfactory.net/articles/wp-content/uploads/2010/02/fontsize.gif" alt="font size" width="580" height="134" /></p>
<p><strong> </strong><strong>5. Add bullet images.</strong></p>
<p>We all know that it&#8217;s important to use lists and bold headings when writing for the Web &#8212; it makes the content easier for a reader to visually scan through. But plain old bullet points are boring, and they make your website or blog look incredibly plain. Why not replace them with your own bullet images to either use pictures, shapes, or colors to help draw the readers&#8217; eyes down your page? Here&#8217;s an example of the bullet images I use on my business writing blog:</p>
<p style="text-align: center;"><img class="size-full wp-image-1142 aligncenter" title="bullets" src="http://www.templatesfactory.net/articles/wp-content/uploads/2010/02/bullets.gif" alt="bullet point images" width="239" height="134" /></p>
<p>I bring the pink from other areas of my site into my bullet points. You can do that by finding the unordered list (ul) styling in your style.css file and the list item styles for them (li). You would create and upload your image, and then just point your stylesheet to that bullet point file on your server. For example, here&#8217;s what mine looks like:</p>
<blockquote><p>.post ul li {<br />
background: url(images/bullet.gif) no-repeat 0 5px;<br />
padding-left: 15px;<br />
padding-bottom: 12px;<br />
}</p></blockquote>
<p>That code formats the bullet points for unordered lists (not numbered lists which are &#8220;ol&#8221; for ordered lists) in my blog posts. However, your stylesheet might format bullets in different areas of your site in different ways, such as your sidebar. If you want to use the same bullet point image for all, you&#8217;ll need to edit the list style for each section. I choose to use similar arrows, but gray ones, for my sidebar.</p>
<p>These might seem like very small changes on the surface, but those small design edits add up. You can take any existing theme and truly make it your own (figuratively speaking of course). In about a year I went from knowing nothing about coding to being able to code full css sites from scratch. Now I occasionally design and code my own simple Wordpress themes too. Even if this feels foreign to you now, stick with it. We aren&#8217;t all cut out to be designers (I&#8217;m certainly not!), but we can all learn enough to help us get what we want out of existing designs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatesfactory.net/articles/the-most-important-html-and-css-tips-for-wordpress-newbies.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Secret World of Cats</title>
		<link>http://www.templatesfactory.net/articles/cats-that-we-dont-know.html</link>
		<comments>http://www.templatesfactory.net/articles/cats-that-we-dont-know.html#comments</comments>
		<pubDate>Wed, 20 May 2009 21:28:36 +0000</pubDate>
		<dc:creator>Anastasia</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[artwork]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[cats]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[kittens]]></category>
		<category><![CDATA[kitties]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[secret world of cats]]></category>

		<guid isPermaLink="false">http://www.templatesfactory.net/articles/?p=1046</guid>
		<description><![CDATA[I&#8217;m a big cat lover but I have to wonder: do I actually know my cat? Do I know what it does when I&#8217;m not at home, when I sleep, or even when I&#8217;m at my computer and it&#8217;s not sitting next to me?  Cats can do some strange things when we aren&#8217;t there to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a big cat lover but I have to wonder: do I actually know my cat? Do I know what it does when I&#8217;m not at home, when I sleep, or even when I&#8217;m at my computer and it&#8217;s not sitting next to me?  Cats can do some strange things when we aren&#8217;t there to watch them. The creators of the artwork below were an exception to the rule. They managed to capture cats in all of their occasional craziness (or at least what we imagine they <em>really</em> do when we&#8217;re not looking). Enjoy!</p>
<h2>Cat Alley</h2>
<p><strong>by Bobby Chiu</strong><br />
Software: Painter, Photoshop</p>
<p>That sweetheart of a kitty begging its owner for some milk? This is what he does to the neighbor&#8217;s dog when you&#8217;re away.</p>
<p><a rel="nofollow" href="http://digital-bobert.cgsociety.org/gallery/292989"><img class="alignnone size-full wp-image-1052" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat1.jpg" alt="cat1" width="650" height="971" /></a></p>
<h2>What Your Cat Wants</h2>
<p><strong>by Serena De Biasi</strong><br />
Software: Painter</p>
<p>This one is definitely my kitty! My computer is turned on all day. It&#8217;s no wonder I found a file on world domination!</p>
<p><a rel="nofollow" href="http://cyborgja.cgsociety.org/gallery/352290"><img class="alignnone size-full wp-image-1054" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat3.jpg" alt="cat3" width="650" height="363" /></a></p>
<h2>Fish And Cat at Granny&#8217;s House</h2>
<p><strong>by Dave Davidson</strong><br />
Software: CINEMA 4D</p>
<p>Looks like the cat of the future, but personally I prefer real cats to their mechanical brothers.</p>
<p><a rel="nofollow" href="http://davedavidson.cgsociety.org/gallery/345527"><img class="alignnone size-full wp-image-1055" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat4.jpg" alt="cat4" width="650" height="526" /></a></p>
<h2>Dragoncat Test</h2>
<p><strong>by Matthew Romero</strong><br />
Software: 3ds max</p>
<p>Dragoncat speaks for itself, but I have to wonder what it eats. Dragon-mice?</p>
<p><a rel="nofollow" href="http://iwashuman2021.cgsociety.org/gallery/462926"><img class="alignnone size-full wp-image-1056" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat5.jpg" alt="cat5" width="650" height="526" /></a></p>
<h2>Super Cat</h2>
<p><strong>by Lin Wu</strong><br />
Software: Photoshop</p>
<p>That&#8217;s a big angry cat in a wonderful Catland &#8212; Catzilla!</p>
<p><a rel="nofollow" href="http://ffnowaygo.cgsociety.org/gallery/670762/"><img class="alignnone size-full wp-image-1057" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat6.jpg" alt="cat6" width="641" height="1000" /></a></p>
<h2>Cat Coffee</h2>
<p><strong>by Lin Wu</strong><br />
Software: Photoshop</p>
<p>And here&#8217;s a kitty&#8217;s perfect little dreamland &#8212; the place where all cats go to have fun when we&#8217;re not at home.</p>
<p><a rel="nofollow" href="http://ffnowaygo.cgsociety.org/gallery/508547/"><br />
<img class="alignnone size-full wp-image-1058" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat7.jpg" alt="cat7" width="617" height="1000" /></a></p>
<h2>The Cat on the Roof</h2>
<p><strong>by Chekrigin Evgeniy</strong><br />
Software: Photoshop</p>
<p>Do you think that you are the only one looking at the stars and dreaming of other worlds? No way!</p>
<p><a rel="nofollow" href="http://izia.cgsociety.org/gallery/524171"><br />
<img class="alignnone size-full wp-image-1059" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat8.jpg" alt="cat8" width="650" height="919" /></a></p>
<h2>Cat</h2>
<p><strong>by Chekrigin Evgeniy</strong><br />
Software: Photoshop</p>
<p>That&#8217;s a moon cat. It visits small children who can&#8217;t sleep and tells them stories about wonderful Catland to lull them to sleep.</p>
<p><a rel="nofollow" href="http://izia.cgsociety.org/gallery/524176/"><img class="alignnone size-full wp-image-1060" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat9.jpg" alt="cat9" width="650" height="733" /></a></p>
<h2>Cat Toy</h2>
<p><strong>by Laura Stevens</strong><br />
Software: Maya, mental ray</p>
<p>Want to hug that little creature? That&#8217;s a superhero cat whose aim is to save the world!</p>
<p><a rel="nofollow" href="http://lauras.cgsociety.org/gallery/569260"><img class="alignnone size-full wp-image-1061" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat10.jpg" alt="cat10" width="650" height="449" /></a></p>
<h2>Cat with a Tail Hand</h2>
<p><strong>by Alperen Kahraman</strong><br />
Software: Photoshop</p>
<p>This cat looks kinda strange, but it&#8217;s pretty convenient to have a tail-hand. Don&#8217;t you think?</p>
<p><a rel="nofollow" href="http://akahraman.cgsociety.org/gallery/600725"><img class="alignnone size-full wp-image-1062" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat11.jpg" alt="cat11" width="650" height="934" /><br />
</a></p>
<h2>Cat</h2>
<p><strong>by Xoan Balta</strong>r<br />
Software: Speed paint on Iphone whit Brushes app.</p>
<p>Mafia cat! Be careful playing with this self confident kitty.</p>
<p><a rel="nofollow" href="http://xoanbaltar.cgsociety.org/gallery/737334"><br />
<img class="alignnone size-full wp-image-1063" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat12.jpg" alt="cat12" width="650" height="991" /></a></p>
<h2>Event cat create&#8230;)))</h2>
<p><strong>by Max Uzkikh</strong><br />
Software: 3ds max, VRay</p>
<p>This cat might be clever, but this also explains why the sand is always out of the box so quickly.</p>
<p><a rel="nofollow" href="http://maxuzkikh.cgsociety.org/gallery/739606"><img class="alignnone size-full wp-image-1064" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat13.jpg" alt="cat13" width="650" height="504" /></a></p>
<h2>Bad Kitty</h2>
<p><strong>by Tamás Tóthfalussy</strong><br />
Software: 3ds max, mental ray, Photoshop, VRay</p>
<p>I didn&#8217;t do it! Blame the dog.</p>
<p><a rel="nofollow" href="http://tottarie.cgsociety.org/gallery/456151"><img class="alignnone size-full wp-image-1065" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat14.jpg" alt="cat14" width="650" height="504" /></a></p>
<h2>Tightrope Cat</h2>
<p><strong>by Eric Battandier</strong><br />
Software: 3ds max</p>
<p>That&#8217;s a good boy! Cats should also have some fun when we are out.</p>
<p><a rel="nofollow" href="http://animoos.cgsociety.org/gallery/465820/"><img class="alignnone size-full wp-image-1053" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/cat2.jpg" alt="cat2" width="650" height="671" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatesfactory.net/articles/cats-that-we-dont-know.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazing Examples of Typographic Style</title>
		<link>http://www.templatesfactory.net/articles/typographic-stylish-style-amazing-collection.html</link>
		<comments>http://www.templatesfactory.net/articles/typographic-stylish-style-amazing-collection.html#comments</comments>
		<pubDate>Mon, 11 May 2009 17:04:30 +0000</pubDate>
		<dc:creator>Anastasia</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[Typographic Style]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[typography artwork]]></category>

		<guid isPermaLink="false">http://www.templatesfactory.net/articles/?p=1013</guid>
		<description><![CDATA[Typographica &#8212; Review of typefaces and type books
Website: http://new.typographica.org/
Typographica is an excellent review of typefaces and type books with occasional commentary on fonts and typographic design. The site was founded in 2002 by Joshua Lurie-Terrell.

Louis Verhoeve
Website: http://louisverhoeven.be
Louis Verhoeve is a Dutch designer who has a unique showcase on his portfolio website. He creates great font-based [...]]]></description>
			<content:encoded><![CDATA[<h2>Typographica &#8212; Review of typefaces and type books</h2>
<p><strong>Website: <a rel="nofollow" href="http://new.typographica.org/">http://new.typographica.org/</a></strong></p>
<p>Typographica is an excellent review of typefaces and type books with occasional commentary on fonts and typographic design. The site was founded in 2002 by Joshua Lurie-Terrell.</p>
<p><img class="alignnone size-full wp-image-1018" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/typographica.jpg" alt="typographica" width="650" height="450" /></p>
<h2>Louis Verhoeve</h2>
<p><strong>Website: <a rel="nofollow" href="http://louisverhoeven.be">http://louisverhoeven.be</a></strong></p>
<p>Louis Verhoeve is a Dutch designer who has a unique showcase on his portfolio website. He creates great font-based printed designs and book covers.</p>
<p><img class="alignnone size-full wp-image-1019" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/louis.jpg" alt="louis" width="650" height="450" /></p>
<h2>Silva! Designers</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.silvadesigners.com/">http://www.silvadesigners.com/</a></strong></p>
<p>Silva! Designers is an editorial design agency based in Chiado, Lisbon, old city. They do typographic design work for magazines, book covers, and catalogs. Their art is definitely stylish and original.</p>
<p><img class="alignnone size-full wp-image-1020" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/silva.jpg" alt="silva" width="650" height="450" /></p>
<h2>DSTYPE</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.dstype.com/">http://www.dstype.com/</a></strong></p>
<p>DSTYPE specializes in creating custom typefaces. That includes designing completely new typefaces for every purpose as well as improving balance, legibility, and otherwise fine tuning existing typefaces and logotypes.</p>
<p><img class="alignnone size-full wp-image-1021" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/dstype.jpg" alt="dstype" width="650" height="450" /></p>
<h2>Denis Ponomarev</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.verstak.ru/">http://www.verstak.ru/</a></strong></p>
<p>Denis Ponomarev is a Russian typographer and graphic designer. He designs for books, magazines, CD covers, and other prints. His works are more than stylish.</p>
<p><img class="alignnone size-full wp-image-1022" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/verstak.jpg" alt="verstak" width="650" height="450" /></p>
<h2>Oliver Daxenbichler</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.oliverdaxenbichler.com/">http://www.oliverdaxenbichler.com/</a></strong></p>
<p>Oliver Daxenbichler is a German designer. His entire website is just one great portfolio showcasing some unbelievable conceptual works.</p>
<p><img class="alignnone size-full wp-image-1023" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/oliver.jpg" alt="oliver" width="650" height="450" /></p>
<h2>Frank Chimero</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.frankchimero.com/">http://www.frankchimero.com/</a></strong></p>
<p>Frank Chimero&#8217;s a graphic designer teaching youth at Missouri S.U. about design foundations and typography. Each piece of his artwork is part of an exploration in finding wit, surprise, honesty, and joy in the world around us. For Frank the work is play, and the play is work.</p>
<p><img class="alignnone size-full wp-image-1024" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/frank.jpg" alt="frank" width="650" height="450" /></p>
<h2>TypeNeu</h2>
<p><strong>Website: <a rel="nofollow" href="http://typeneu.com/">http://typeneu.com/</a></strong></p>
<p>TypeNeu is a typography blog. The website looks like a bunch of wallpapers glued together, showcasing a variety of info about fonts and typography.</p>
<p><img class="alignnone size-full wp-image-1025" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/typeneu.jpg" alt="typeneu" width="650" height="450" /></p>
<h2>Alison Carmichael</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.alisoncarmichael.com/">http://www.alisoncarmichael.com/</a></strong></p>
<p>Alison Carmichael creates amazing book covers, print advertisements, and graphic designs. She is an award-winning talent in typography and design.</p>
<p><img class="alignnone size-full wp-image-1026" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/alison.jpg" alt="alison" width="650" height="450" /></p>
<h2>86era</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.86era.org/">http://www.86era.org/</a></strong></p>
<p>86era is the portfolio of Maxwell Lord, a typographer and graphic designer. His works are fresh and you can find a huge collection of them on Flickr.</p>
<p><img class="alignnone size-full wp-image-1027" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/86era.jpg" alt="86era" width="650" height="450" /></p>
<h2>Marian Bantjes</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.bantjes.com/">http://www.bantjes.com/</a></strong></p>
<p>From the artist: &#8220;My &#8217;style&#8217; is always evolving, and if you look at my work you can see multiple interests emerge. People tend to think of me in terms of the swirly, pretty vector art, but it is much more varied than that. I’m quite happy that my work is eclectic while still personally identifiable.&#8221;</p>
<p><img class="alignnone size-full wp-image-1028" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/marian.jpg" alt="marian" width="650" height="450" /></p>
<h2>HMF</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.handmadefont.com">http://www.handmadefont.com</a></strong></p>
<p>HMF is an Estonian design company. They specialize in developing unique, nontraditional fonts and take inspiration from everything that surrounds them. All the fonts are made manually and this is an amazing, though very complicated, art.</p>
<p><img class="alignnone size-full wp-image-1029" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/hmf.jpg" alt="hmf" width="650" height="450" /></p>
<h2>Graphical House</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.graphicalhouse.co.uk/">http://www.graphicalhouse.co.uk/</a></strong></p>
<p>Scottish graphic designers at Graphical House show their design skills to be in a highly professional league. You can explore nice visual moments in all of their work. Their portfolio is truly impressive.</p>
<p><img class="alignnone size-full wp-image-1032" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/graphical.jpg" alt="graphical" width="650" height="450" /></p>
<h2>Studiosnooze</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.studiosnooze.com/">http://www.studiosnooze.com/</a></strong></p>
<p>Snooze is a Croatian studio. They provide a broad range of design services, maximizing the true potential of their clients by building sophisticated and innovative solutions that enable them to develop deeper and more personalized relationships with their customers&#8230;. At least that&#8217;s what they say.</p>
<p><img class="alignnone size-full wp-image-1033" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/studios.jpg" alt="studios" width="650" height="450" /></p>
<h2>Today Is Sunday</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.todayissunday.com/">http://www.todayissunday.com/</a></strong></p>
<p>Today is Sunday is the portfolio of Carlos Guedes, Portuguese Interactive Art Director, visual effects aficionado, and surfer.</p>
<p><img class="alignnone size-full wp-image-1030" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/sunday.jpg" alt="sunday" width="650" height="450" /></p>
<h2>Typography Served</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.typographyserved.com/">http://www.typographyserved.com/</a></strong></p>
<p>The Served site brings a steady supply of top quality creative work to the table. They comb through projects from the portfolios of the most talented creative people and teams around the world.</p>
<p><img class="alignnone size-full wp-image-1031" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/typography_served.jpg" alt="typography_served" width="650" height="450" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatesfactory.net/articles/typographic-stylish-style-amazing-collection.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Demonic Girls: Digital Art Through Photomanipulation</title>
		<link>http://www.templatesfactory.net/articles/demonic-girls-digital-art-photomanipulation.html</link>
		<comments>http://www.templatesfactory.net/articles/demonic-girls-digital-art-photomanipulation.html#comments</comments>
		<pubDate>Wed, 06 May 2009 21:40:53 +0000</pubDate>
		<dc:creator>Anastasia</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Demonic Girls]]></category>
		<category><![CDATA[Digital Art]]></category>
		<category><![CDATA[Photomanipulation]]></category>

		<guid isPermaLink="false">http://www.templatesfactory.net/articles/?p=975</guid>
		<description><![CDATA[Demon Inside?

Demon

Harpy Demon

F.E.A.R.

Speak No Evil

BOXEL &#8211; Demon GIRL

Inocencia Perdida

Demon

Demon Taking Over

Nightmare Collection

My Sisters&#8217; Sorrows Image

Heavens Mutant Children

Demons -And The Afterburn

Chaos Bringer

Scar Tissue

Inner Flame Demon

Teen Magazine Demon edition

Seducer + Destroyer

Have Faith And&#8230;

Poison

Quoth the Raven&#8211;Nevermore

Nevus Shroud

Darkness Surrounding

Fear of the Dark

Zombie Nation

]]></description>
			<content:encoded><![CDATA[<h2><a rel="nofollow" href="http://xmorrighanx.deviantart.com/art/demon-inside-38688508">Demon Inside?</a></h2>
<p><img class="alignnone size-full wp-image-984" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/devil1.jpg" alt="devil1" width="650" height="686" /></p>
<h2><a rel="nofollow" href="http://winktothanatos.deviantart.com/art/demon-74676994">Demon</a></h2>
<p><img class="alignnone size-full wp-image-985" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon2.jpg" alt="demon2" width="650" height="511" /></p>
<h2><a rel="nofollow" href="http://dark-scythe.deviantart.com/art/Harpy-Demon-18414077">Harpy Demon</a></h2>
<p><img class="alignnone size-full wp-image-986" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon3.jpg" alt="demon3" width="650" height="488" /></p>
<h2><a rel="nofollow" href="http://crashdowngrrl.deviantart.com/art/F-E-A-R-12588247">F.E.A.R.</a></h2>
<p><img class="alignnone size-full wp-image-987" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon4.jpg" alt="demon4" width="650" height="846" /></p>
<h2><a rel="nofollow" href="http://dezkray.deviantart.com/art/Speak-No-Evil-48109309">Speak No Evil</a></h2>
<p><img class="alignnone size-full wp-image-988" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon5.jpg" alt="demon5" width="600" height="982" /></p>
<h2><a rel="nofollow" href="http://mrbrownie.deviantart.com/art/BOXEL-Demon-GIRL-96515476">BOXEL &#8211; Demon GIRL</a></h2>
<p><img class="alignnone size-full wp-image-989" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon6.png" alt="demon6" width="650" height="808" /></p>
<h2><a rel="nofollow" href="http://staldren.deviantart.com/art/Inocencia-perdida-32764971">Inocencia Perdida</a></h2>
<p><img class="alignnone size-full wp-image-990" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon7.jpg" alt="demon7" width="650" height="524" /></p>
<h2><a rel="nofollow" href="http://tattoomaus78.deviantart.com/art/demon-36416623">Demon</a></h2>
<p><img class="alignnone size-full wp-image-991" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon8.jpg" alt="demon8" width="650" height="466" /></p>
<h2><a rel="nofollow" href="http://apophis-snake.deviantart.com/art/Demon-taking-over-10565694">Demon Taking Over</a></h2>
<p><img class="alignnone size-full wp-image-992" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon9.jpg" alt="demon9" width="650" height="745" /></p>
<h2><a rel="nofollow" href="http://sayra.deviantart.com/art/Nightmare-Collection-Part-2-111292867">Nightmare Collection</a></h2>
<p><img class="alignnone size-full wp-image-993" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon10.jpg" alt="demon10" width="650" height="509" /></p>
<h2><a rel="nofollow" href="http://racehorse87.deviantart.com/art/My-Sisters-Sorrows-Image-40504214">My Sisters&#8217; Sorrows Image</a></h2>
<p><img class="alignnone size-full wp-image-994" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon11.jpg" alt="demon11" width="650" height="428" /></p>
<h2><a rel="nofollow" href="http://nosve.deviantart.com/art/Heavens-Mutant-Children-V-70705153">Heavens Mutant Children</a></h2>
<p><img class="alignnone size-full wp-image-995" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon12.jpg" alt="demon12" width="650" height="789" /></p>
<h2><a rel="nofollow" href="http://yamikarasu.deviantart.com/art/demons-and-the-afterburn-11518703">Demons -And The Afterburn</a></h2>
<p><img class="alignnone size-full wp-image-996" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon13.jpg" alt="demon13" width="650" height="839" /></p>
<h2><a rel="nofollow" href="http://astarothpriestess.deviantart.com/art/Chaos-bringer-114282045">Chaos Bringer</a></h2>
<p><img class="alignnone size-full wp-image-997" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon14.jpg" alt="demon14" width="650" height="638" /></p>
<h2><a rel="nofollow" href="http://plingeh.deviantart.com/art/Scar-Tissue-102333754">Scar Tissue</a></h2>
<p><img class="alignnone size-full wp-image-998" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon15.jpg" alt="demon15" width="650" height="969" /></p>
<h2><a rel="nofollow" href="http://sparkley-puffs.deviantart.com/art/Inner-Flame-Demon-74267456">Inner Flame Demon</a></h2>
<p><img class="alignnone size-full wp-image-999" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon16.jpg" alt="demon16" width="650" height="473" /></p>
<h2><a rel="nofollow" href="http://plushpuppyjoey.deviantart.com/art/Teen-Magazine-Demon-edition-5737044">Teen Magazine Demon edition</a></h2>
<p><img class="alignnone size-full wp-image-1000" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon17.jpg" alt="demon17" width="650" height="867" /></p>
<h2><a rel="nofollow" href="http://snickerbaby.deviantart.com/art/Seducer-Destroyer-109590476">Seducer + Destroyer</a></h2>
<p><img class="alignnone size-full wp-image-1001" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon18.png" alt="demon18" width="600" height="403" /></p>
<h2><a rel="nofollow" href="http://sangelus.deviantart.com/art/Have-Faith-And-84518041">Have Faith And</a>&#8230;</h2>
<p><img class="alignnone size-full wp-image-1002" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon19.jpg" alt="demon19" width="650" height="572" /></p>
<h2><a rel="nofollow" href="http://morbidicourio.deviantart.com/art/Poison-85468827">Poison</a></h2>
<p><img class="alignnone size-full wp-image-1003" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon20.jpg" alt="demon20" width="650" height="847" /></p>
<h2><a rel="nofollow" href="http://avari-puppet.deviantart.com/art/Quoth-the-Raven-Nevermore-36739674">Quoth the Raven&#8211;Nevermore</a></h2>
<p><img class="alignnone size-full wp-image-1004" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon21.jpg" alt="demon21" width="650" height="785" /></p>
<h2><a rel="nofollow" href="http://the-silver-angel-13.deviantart.com/art/Nevus-Shroud-65822340">Nevus Shroud</a></h2>
<p><img class="alignnone size-full wp-image-1005" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon22.jpg" alt="demon22" width="650" height="531" /></p>
<h2><a rel="nofollow" href="http://itsxelectrikkx.deviantart.com/art/Darkness-Surrounding-22019282">Darkness Surrounding</a></h2>
<p><img class="alignnone size-full wp-image-1006" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon23.jpg" alt="demon23" width="650" height="488" /></p>
<h2><a rel="nofollow" href="http://morbidicourio.deviantart.com/art/Fear-of-the-Dark-53364009">Fear of the Dark</a></h2>
<p><img class="alignnone size-full wp-image-1007" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon24.jpg" alt="demon24" width="650" height="505" /></p>
<h2><a rel="nofollow" href="http://mouthofmaggots.deviantart.com/art/Zombie-Nation-101916688">Zombie Nation</a></h2>
<p><img class="alignnone size-full wp-image-1008" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/05/demon25.jpg" alt="demon25" width="650" height="916" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatesfactory.net/articles/demonic-girls-digital-art-photomanipulation.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Dance For You. 3D Art.</title>
		<link>http://www.templatesfactory.net/articles/my-dance-for-you-3d-art.html</link>
		<comments>http://www.templatesfactory.net/articles/my-dance-for-you-3d-art.html#comments</comments>
		<pubDate>Wed, 29 Apr 2009 19:05:07 +0000</pubDate>
		<dc:creator>Anastasia</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[dance]]></category>
		<category><![CDATA[dancing]]></category>
		<category><![CDATA[Digital Art]]></category>

		<guid isPermaLink="false">http://www.templatesfactory.net/articles/?p=940</guid>
		<description><![CDATA[It&#8217;s beautiful when you can dance beautifully   Dancing is a complicated body science that requires lots of your time, efforts, patience and passion. It&#8217;s a real science to move in a dance and that&#8217;s a real art to create the dancers in 3D. Today we are glad to present you a showcase of [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s beautiful when you can dance beautifully <img src='http://www.templatesfactory.net/articles/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Dancing is a complicated body science that requires lots of your time, efforts, patience and passion. It&#8217;s a real science to move in a dance and that&#8217;s a real art to create the dancers in 3D. Today we are glad to present you a showcase of some amazing 3D works featuring the dance. Girls look so real that I couldn&#8217;t first believe that&#8217;s not a photo or photo manipulation effects. Dance and enjoy with us!</p>
<h2><a href="http://antjedarling.deviantart.com/art/A-Fairy-s-Dance-20282178">A Fairy&#8217;s Dance</a></h2>
<p><img class="alignnone size-full wp-image-942" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_1.jpg" alt="3d_dance_1" width="650" height="780" /></p>
<h2><a href="http://sleepinglion.deviantart.com/art/The-Dance-40227091">The Dance</a></h2>
<p><img class="alignnone size-full wp-image-943" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_2.jpg" alt="3d_dance_2" width="650" height="398" /></p>
<h2><a href="http://maureenolder.deviantart.com/art/To-Dance-89498941">To Dance</a></h2>
<p><img class="alignnone size-full wp-image-944" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_3.jpg" alt="3d_dance_3" width="650" height="677" /></p>
<h2><a href="http://xxwarbladexx.deviantart.com/art/Dance-47637751">Dance</a></h2>
<p><img class="alignnone size-full wp-image-945" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_4.jpg" alt="3d_dance_4" width="647" height="1000" /></p>
<h2><a href="http://scott2753.deviantart.com/art/Let-Your-Body-Dance-114354987">Let Your Body Dance</a></h2>
<p><img class="alignnone size-full wp-image-946" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_5.jpg" alt="3d_dance_5" width="650" height="650" /></p>
<h2><a href="http://samanimate.deviantart.com/art/Dance-65649332">Dance</a></h2>
<p><img class="alignnone size-full wp-image-947" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_6.jpg" alt="3d_dance_6" width="582" height="1000" /></p>
<h2><a href="http://theblindbat.deviantart.com/art/Joy-of-the-Dance-Alice-114655949">Joy of the Dance</a></h2>
<p><img class="alignnone size-full wp-image-948" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_7.jpg" alt="3d_dance_7" width="650" height="554" /></p>
<h2><a href="http://positivelycreative.deviantart.com/art/Life-is-a-Dance-66484752">Life is a Dance</a></h2>
<p><img class="alignnone size-full wp-image-949" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_8.jpg" alt="3d_dance_8" width="650" height="692" /></p>
<h2><a href="http://theblindbat.deviantart.com/art/Dance-of-Tranquility-59327927">Dance of Tranquility</a></h2>
<p><img class="alignnone size-full wp-image-950" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_9.jpg" alt="3d_dance_9" width="650" height="813" /></p>
<h2><a href="http://almeidap.deviantart.com/art/Go-Go-Dance-Yuri-82148271">Go Go Dance Yuri</a></h2>
<p><img class="alignnone size-full wp-image-951" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_10.jpg" alt="3d_dance_10" width="650" height="416" /></p>
<h2><a href="http://larparmit.deviantart.com/art/Autumn-Dance-69708928">Autumn Dance</a></h2>
<p><img class="alignnone size-full wp-image-952" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_11.jpg" alt="3d_dance_11" width="650" height="772" /></p>
<h2><a href="http://elinewton.deviantart.com/art/Kerry-Dance-Room-007-99232600">Kerry Dance Room</a></h2>
<p><img class="alignnone size-full wp-image-953" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_12.jpg" alt="3d_dance_12" width="650" height="488" /></p>
<h2><a href="http://digital-kisses.deviantart.com/art/Fire-Angel-66962825">Fire Angel</a></h2>
<p><img class="alignnone size-full wp-image-954" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_13.jpg" alt="3d_dance_13" width="650" height="717" /></p>
<h2><a href="http://wildhunt.deviantart.com/art/Gypsy-Woman-64209011">Gypsy Woman</a></h2>
<p><img class="alignnone size-full wp-image-955" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_14.jpg" alt="3d_dance_14" width="650" height="489" /></p>
<h2><a href="http://bca.deviantart.com/art/Flutter-Dance-115710108">Flutter Dance</a></h2>
<p><img class="alignnone size-full wp-image-956" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_15.png" alt="3d_dance_15" width="660" height="696" /></p>
<h2><a href="http://dannie3d.deviantart.com/art/Pretty-Salome-112981007">Pretty Salome</a></h2>
<p><img class="alignnone size-full wp-image-957" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_16.jpg" alt="3d_dance_16" width="650" height="715" /></p>
<h2><a href="http://silencerthevampire.deviantart.com/art/Dance-113406614">Dance</a></h2>
<p><img class="alignnone size-full wp-image-958" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_17.jpg" alt="3d_dance_17" width="608" height="1000" /></p>
<h2><a href="http://webster2772.deviantart.com/art/Fools-Can-Dance-47435109">Fools Can Dance</a></h2>
<p><img class="alignnone size-full wp-image-959" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_18.jpg" alt="3d_dance_18" width="650" height="668" /></p>
<h2><a href="http://dragontales.deviantart.com/art/Candied-Apples-72713503">Candied Apples</a></h2>
<p><img class="alignnone size-full wp-image-960" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_19.jpg" alt="3d_dance_19" width="650" height="854" /></p>
<h2><a href="http://mixxedblessings.deviantart.com/art/Cloud-Dancing-93047180">Cloud Dancing</a></h2>
<p><img class="alignnone size-full wp-image-961" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_20.jpg" alt="3d_dance_20" width="650" height="650" /></p>
<h2><a href="http://ggzagor.deviantart.com/art/BaLLerina-01-120416985">BaLLerina</a></h2>
<p><img class="alignnone size-full wp-image-962" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_21.jpg" alt="3d_dance_21" width="650" height="683" /></p>
<h2><a href="http://kjherstin.deviantart.com/art/Cosmic-Girl-105582599">Cosmic Girl</a></h2>
<p><img class="alignnone size-full wp-image-963" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_22.png" alt="3d_dance_22" width="650" height="520" /></p>
<h2><a href="http://mattymanx.deviantart.com/art/The-Ballerina-102143367">The Ballerina</a></h2>
<p><img class="alignnone size-full wp-image-964" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_23.jpg" alt="3d_dance_23" width="650" height="433" /></p>
<h2><a href="http://kissmypixels.deviantart.com/art/Debonair-84430230">Debonair</a></h2>
<p><img class="alignnone size-full wp-image-965" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/3d_dance_24.jpg" alt="3d_dance_24" width="650" height="813" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatesfactory.net/articles/my-dance-for-you-3d-art.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sophisticated Fashion Illustration. Part1.</title>
		<link>http://www.templatesfactory.net/articles/sophisticated-fashion-illustration-part1.html</link>
		<comments>http://www.templatesfactory.net/articles/sophisticated-fashion-illustration-part1.html#comments</comments>
		<pubDate>Mon, 27 Apr 2009 16:08:25 +0000</pubDate>
		<dc:creator>Anastasia</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Antoinette Fleur]]></category>
		<category><![CDATA[Fashion Illustration]]></category>
		<category><![CDATA[Kelly Smith]]></category>
		<category><![CDATA[Miyuki Ohashi]]></category>

		<guid isPermaLink="false">http://www.templatesfactory.net/articles/?p=894</guid>
		<description><![CDATA[Kelly Smith
Portfolio: www.birdyandme.com.au
Kelly Smith lives and works in Tasmania, Australia. In 2006 she graduated with a Bachelor of Fine Arts from the Tasmanian School of Art and has since gone on to pursue of a freelance career in both portrait and fashion illustration.










Antoinette Fleur
Portfolio: www.antoinettefleur.fr
Antoinette Fleur is a young French fashion illustrator. She works with [...]]]></description>
			<content:encoded><![CDATA[<h1>Kelly Smith</h1>
<p><strong>Portfolio: <a href="http://www.birdyandme.com.au/">www.birdyandme.com.au</a></strong></p>
<p>Kelly Smith lives and works in Tasmania, Australia. In 2006 she graduated with a Bachelor of Fine Arts from the Tasmanian School of Art and has since gone on to pursue of a freelance career in both portrait and fashion illustration.</p>
<p><img class="alignnone size-full wp-image-908" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/kelly3.jpg" alt="kelly3" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-909" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/kelly5.jpg" alt="kelly5" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-910" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/kelly7.jpg" alt="kelly7" width="599" height="709" /></p>
<p><img class="alignnone size-full wp-image-911" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/kelly8.jpg" alt="kelly8" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-912" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/kelly9.jpg" alt="kelly9" width="591" height="591" /></p>
<p><img class="alignnone size-full wp-image-913" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/kelly10.jpg" alt="kelly10" width="567" height="709" /></p>
<p><img class="alignnone size-full wp-image-914" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/kelly11.jpg" alt="kelly11" width="567" height="709" /></p>
<p><img class="alignnone size-full wp-image-915" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/kelly12.jpg" alt="kelly12" width="600" height="717" /></p>
<p><img class="alignnone size-full wp-image-916" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/kelly14.jpg" alt="kelly14" width="591" height="443" /></p>
<p><img class="alignnone size-full wp-image-917" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/kelly17.jpg" alt="kelly17" width="567" height="709" /></p>
<h1>Antoinette Fleur</h1>
<p><strong>Portfolio: <a href="http://antoinettefleur.fr/">www.antoinettefleur.fr</a></strong></p>
<p>Antoinette Fleur is a young French fashion illustrator. She works with a felt pen and creates fantastic images of fashionable Parisians. Stunning and amazing work, frankly speaking I&#8217;ve never seen anything like that.</p>
<p><img class="alignnone size-full wp-image-896" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/an2.jpg" alt="an2" width="600" height="600" /></p>
<p><img class="alignnone size-full wp-image-897" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/an4.jpg" alt="an4" width="600" height="600" /></p>
<p><img class="alignnone size-full wp-image-898" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/an6.jpg" alt="an6" width="600" height="600" /></p>
<p><img class="alignnone size-full wp-image-899" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/an9.jpg" alt="an9" width="600" height="600" /></p>
<p><img class="alignnone size-full wp-image-900" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/an18.jpg" alt="an18" width="600" height="600" /></p>
<p><img class="alignnone size-full wp-image-901" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/an22.jpg" alt="an22" width="600" height="600" /></p>
<p><img class="alignnone size-full wp-image-902" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/an23.jpg" alt="an23" width="600" height="600" /></p>
<p><img class="alignnone size-full wp-image-903" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/an30.jpg" alt="an30" width="600" height="600" /></p>
<p><img class="alignnone size-full wp-image-904" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/an31.jpg" alt="an31" width="600" height="600" /></p>
<p><img class="alignnone size-full wp-image-905" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/an36.jpg" alt="an36" width="600" height="600" /></p>
<p><img class="alignnone size-full wp-image-906" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/an42.jpg" alt="an42" width="600" height="600" /></p>
<h1>Miyuki Ohashi</h1>
<p><strong>Portfolio: <a href="http://miyukiohashi.net/index.html">www.miyukiohashi.net</a></strong></p>
<p>Miyuki Ohashi is a Japanese illustrator, depicting glamorous women is simple strokes. Her style is unique and her artwork is truly amazing.</p>
<p><img class="alignnone size-full wp-image-922" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/mi3.jpg" alt="mi3" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-923" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/mi4.jpg" alt="mi4" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-924" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/mi5.jpg" alt="mi5" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-925" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/mi6.jpg" alt="mi6" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-926" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/mi7.jpg" alt="mi7" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-927" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/mi8.jpg" alt="mi8" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-928" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/mi9.jpg" alt="mi9" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-929" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/mi10.jpg" alt="mi10" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-930" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/mi12.jpg" alt="mi12" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-921" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/mi2.jpg" alt="mi2" width="600" height="500" /></p>
<p><img class="alignnone size-full wp-image-920" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/mi1.jpg" alt="mi1" width="600" height="500" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatesfactory.net/articles/sophisticated-fashion-illustration-part1.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS Hosting Design. New Trend In Hosting Business.</title>
		<link>http://www.templatesfactory.net/articles/css-hosting-design-new-tendency-in-hosting-business.html</link>
		<comments>http://www.templatesfactory.net/articles/css-hosting-design-new-tendency-in-hosting-business.html#comments</comments>
		<pubDate>Wed, 22 Apr 2009 22:41:06 +0000</pubDate>
		<dc:creator>Anastasia</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[CSS hosting]]></category>
		<category><![CDATA[hosting website design]]></category>
		<category><![CDATA[web 2.0 hosting]]></category>

		<guid isPermaLink="false">http://www.templatesfactory.net/articles/?p=857</guid>
		<description><![CDATA[We are all used to the look and feel of the hosting websites that seem to have been designed in this same style for ages now. Since there&#8217;s lots of important info that needs to be placed on the home page, the home pages of the hosting websites usually look crowded and sometimes even like [...]]]></description>
			<content:encoded><![CDATA[<p>We are all used to the look and feel of the hosting websites that seem to have been designed in this same style for ages now. Since there&#8217;s lots of important info that needs to be placed on the home page, the home pages of the hosting websites usually look crowded and sometimes even like a mess and all this info gives a feeling that hosting is something very complicated. Most of us are familiar with the GoDaddy hosting company and the first glance at their website makes me think that I will never make it.</p>
<p>After the web 2.0 stream and during the last year some of developers started rethinking the usual approach to design of the hosting website. The clean CSS style with the 2.0 accent was obviously their aim. Nowadays CSS and web 2.0 approach to hosting website design is the new tendency that is getting stronger and stronger. Just think about it, if we find the website with the large fonts, lots of white space, clear icons and big buttons convenient, pleasant to the eye and easy to understand, why don&#8217;t we apply same concept to hosting website design.</p>
<p>I&#8217;ve prepared some CSS hosting designs that I personally like. Each one has it&#8217;s own unique style and stands out from the crowd. Follow the stream and be one of the first to join, as this is the key for success.</p>
<h2>Littleoak Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.littleoak.net/">www.littleoak.net</a></strong></p>
<p><img src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/little_small.jpg" alt="little_small" width="650" height="500" class="alignnone size-full wp-image-891" /></p>
<h2>Hostnexus Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.hostnexus.com/">www.hostnexus.com</a></strong></p>
<p><img class="alignnone size-full wp-image-868" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/hostnexus.jpg" alt="hostnexus" width="650" height="500" /></p>
<h2>Virtualspirits Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.virtualsplits.com/">www.virtualsplits.com</a></strong></p>
<p><img class="alignnone size-full wp-image-866" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/virtual.jpg" alt="virtual" width="650" height="500" /></p>
<h2>Manshosting Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://manshostings.lv/">www.manshostings.lv</a></strong></p>
<p><img class="alignnone size-full wp-image-869" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/manshosting.jpg" alt="manshosting" width="650" height="500" /></p>
<h2>Onlineeglo Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.onlineglo.com.au/">www.onlineglo.com.au</a><br />
</strong></p>
<p><img class="alignnone size-full wp-image-870" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/onlineglo.jpg" alt="onlineglo" width="650" height="500" /></p>
<h2>Churchmediahosting Hosting</h2>
<p><strong>Website: </strong><strong><a rel="nofollow" href="http://www.churchmediahosting.com/">www.churchmediahosting.com</a></strong></p>
<p><img class="alignnone size-full wp-image-871" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/church.jpg" alt="church" width="650" height="500" /></p>
<h2>Bullethost Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.bullethost.com/">www.bullethost.com</a></strong></p>
<p><img class="alignnone size-full wp-image-872" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/bullet.jpg" alt="bullet" width="650" height="500" /></p>
<h2>Crucialwebhost Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.crucialwebhost.com/">www.crucialwebhost.com</a></strong></p>
<p><img class="alignnone size-full wp-image-873" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/crucial.jpg" alt="crucial" width="650" height="500" /></p>
<h2>Eleven2 Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.eleven2.com/">www.eleven2.com</a></strong></p>
<p><img class="alignnone size-full wp-image-874" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/eleven.jpg" alt="eleven" width="650" height="500" /></p>
<h2>Vps Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://vps.net/">www.vps.net</a></strong></p>
<p><img class="alignnone size-full wp-image-875" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/vps.jpg" alt="vps" width="650" height="500" /></p>
<h2>Micromediahosting Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.micromediahosting.com/">www.micromediahosting.com </a></strong></p>
<p><img class="alignnone size-full wp-image-876" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/micromedia.jpg" alt="micromedia" width="650" height="500" /></p>
<h2>Suprasshosting Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.surpasshosting.com/">www.surpasshosting.com</a></strong></p>
<p><img class="alignnone size-full wp-image-877" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/surpass.jpg" alt="surpass" width="650" height="500" /></p>
<h2>Motion-hosting Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://www.motion-hosting.com/">www.motion-hosting.com</a></strong></p>
<p><img class="alignnone size-full wp-image-878" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/motion.jpg" alt="motion" width="650" height="500" /></p>
<h2>Webfusion Hosting</h2>
<p><strong>Website: <a rel="nofollow" href="http://webfusion.com/">www.webfusion.com</a></strong></p>
<p><img class="alignnone size-full wp-image-885" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/webfusion.jpg" alt="webfusion" width="650" height="500" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatesfactory.net/articles/css-hosting-design-new-tendency-in-hosting-business.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The World&#8217;s Top Hotels (and Their Web Designs)</title>
		<link>http://www.templatesfactory.net/articles/greedy-luxury-worlds-top-hotels.html</link>
		<comments>http://www.templatesfactory.net/articles/greedy-luxury-worlds-top-hotels.html#comments</comments>
		<pubDate>Fri, 17 Apr 2009 12:36:47 +0000</pubDate>
		<dc:creator>Anastasia</dc:creator>
				<category><![CDATA[Website Design]]></category>
		<category><![CDATA[design comparison]]></category>
		<category><![CDATA[design contest]]></category>
		<category><![CDATA[hotel web design]]></category>
		<category><![CDATA[world's top hotels]]></category>

		<guid isPermaLink="false">http://www.templatesfactory.net/articles/?p=794</guid>
		<description><![CDATA[There&#8217;s a so called gold list of the best hotels in the world that Condé Nast Traveler releases every other year. Here are the hotels they recommend for 2009: http://www.cntraveller.com/GoldList/2009/. These are their selections for hotels all around the world that have the best rooms, service, food, locations, ambiance and design, and leisure facilities.
They have [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a so called <a rel="nofollow" href="http://www.cntraveller.com/GoldList/2009/">gold list of the best hotels </a>in the world that <em>Condé Nast Traveler </em>releases every other year. Here are the hotels they recommend for 2009: <a href="http://www.cntraveller.com/GoldList/2009/">http://www.cntraveller.com/GoldList/2009/</a>. These are their selections for hotels all around the world that have the best rooms, service, food, locations, ambiance and design, and leisure facilities.</p>
<p>They have winners in several categories: best for ambiance/design, best for facilities, best for food, best for location, best for rooms, and best for service.</p>
<p>Since we&#8217;re mostly interested in the design aspect of the hotel rankings, we decided to turn our attention to the hotels chosen for the best designs &#8212; not the hotel interior/exterior, but the website design. Having reviewed several websites, we thought it would be nice to make some kind of a contest not just for design and look, but for the website usability as well. IMHO, the most luxurious hotels should pay more attention to their online presence.</p>
<p>Thinking about the perfect hotel website (in my understanding) I&#8217;ve made a list of several features the judging is based on. I&#8217;ll list them below.</p>
<ul>
<li>Professional photos of the hotel and surrounding area, preferably changing in flash with a version of the website with bigger fonts for aged people or just fonts big enough in general;</li>
<li>Icons to change the language of the website (except for US and UK since English is an international language;</li>
<li>An area to make a reservation on the home page (I don&#8217;t want to dig inside the website looking for the appropriate page if I already know I want to stay there);</li>
<li>A search area for quick access to the info needed;</li>
<li>Testimonials from some rich people, celebrities, or other notable customers;</li>
<li>Some kind of promotion to attract potential clients, or at least a section with some interesting news</li>
</ul>
<p>Here are the screen shots for the websites we evaluated, followed by a table showing how each website ranked</p>
<h2>EVASON ANA MANDARA &amp; SIX SENSES SPA, NHA TRANG, VIETNAM</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.sixsenses.com/evason/index.php">http://www.sixsenses.com/evason/index.php</a></p>
<p><img class="alignnone size-full wp-image-800" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/evason.jpg" alt="evason" width="650" height="450" /></p>
<h2>MANDARIN ORIENTAL DHARA DHEVI, CHIANG MAI, THAILAND</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.mandarinoriental.com/">http://www.mandarinoriental.com/</a></p>
<p><img class="alignnone size-full wp-image-801" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/mandarin.jpg" alt="mandarin" width="650" height="450" /></p>
<h2>RAMBAGH PALACE, JAIPUR, INDIA</h2>
<p>I couldn&#8217;t find their website, so they are out of the list.</p>
<h2>HAYMARKET HOTEL, LONDON, ENGLAND</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.firmdale.com/index.php?page_id=8">http://www.firmdale.com/index.php?page_id=8</a></p>
<p><img class="alignnone size-full wp-image-802" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/heymarket.jpg" alt="heymarket" width="650" height="450" /></p>
<h2>FASANO SAO PAULO, BRAZIL</h2>
<p><strong>Website: </strong><a rel="nofollow" href="http://www.fasano.com.br/site_hoteis_en.php">http://www.fasano.com.br/site_hoteis_en.php</a></p>
<p><img class="alignnone size-full wp-image-803" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fasano.jpg" alt="fasano" width="650" height="450" /></p>
<h2>HUKA LODGE, NEW ZEALAND</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.hukalodge.co.nz/">http://www.hukalodge.co.nz/</a></p>
<p><img class="alignnone size-full wp-image-804" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/huka.jpg" alt="huka" width="650" height="450" /></p>
<h2>SAINT-BARTH ISLE DE FRANCE, ST BARTS</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.isle-de-france.com/">http://www.isle-de-france.com/</a></p>
<p><img class="alignnone size-full wp-image-805" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/saint_barth.jpg" alt="saint_barth" width="650" height="450" /></p>
<h2>THE SETAI, MIAMI, USA</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.setai.com/">http://www.setai.com/</a></p>
<p><img class="alignnone size-full wp-image-806" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/setai.jpg" alt="setai" width="650" height="450" /></p>
<h2>BABINGTON HOUSE, SOMERSET, ENGLAND</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.babingtonhouse.co.uk/">http://www.babingtonhouse.co.uk/</a><br />
This one never opened for me so it&#8217;s out of the list (a perfect example of poor usability).</p>
<p><img class="alignnone size-full wp-image-807" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/babington.jpg" alt="babington" width="650" height="450" /></p>
<h2>ONE ALDWYCH, LONDON, ENGLAND</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.onealdwych.com/">http://www.onealdwych.com/</a></p>
<p><img class="alignnone size-full wp-image-808" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/one_ald.jpg" alt="one_ald" width="650" height="450" /></p>
<h2>THE BULGARI, MILAN, ITALY</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://bulgarihotels.com">http://bulgarihotels.com</a></p>
<p><img class="alignnone size-full wp-image-809" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/bulgari.jpg" alt="bulgari" width="650" height="450" /></p>
<h2>HOTEL ASTORIA, ST PETERSBURG, RUSSIA</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.thehotelastoria.com/">http://www.thehotelastoria.com/</a></p>
<p><img class="alignnone size-full wp-image-810" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/astoria.jpg" alt="astoria" width="650" height="450" /></p>
<h2>YASAWA ISLAND RESORT &amp; SPA, FIJI</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.yasawa.com/">http://www.yasawa.com/</a></p>
<p><img class="alignnone size-full wp-image-811" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yasawa.jpg" alt="yasawa" width="650" height="450" /></p>
<h2>BAY OF FIRES, TASMANIA , AUSTRALIA</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.bayoffires.com.au/">http://www.bayoffires.com.au/</a></p>
<p><img class="alignnone size-full wp-image-812" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/bay_of_fires.jpg" alt="bay_of_fires" width="650" height="450" /></p>
<h2>COCOA ISLAND, MALDIVES</h2>
<p><strong>Website: </strong><a rel="nofollow" href="http://www.cocoaisland.como.bz/default.asp">http://www.cocoaisland.como.bz/default.asp</a></p>
<p><img class="alignnone size-full wp-image-813" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/cocoa.jpg" alt="cocoa" width="650" height="450" /></p>
<h2>G HOTEL, GALWAY, IRELAND</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.theghotel.ie/">http://www.theghotel.ie/</a></p>
<p><img class="alignnone size-full wp-image-814" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/ghotel.jpg" alt="ghotel" width="650" height="450" /></p>
<h2>SABI SABI EARTH LODGE, SOUTH AFRICA</h2>
<p><strong>Website: </strong><a rel="nofollow" href="http://www.sabisabi.com/">http://www.sabisabi.com/</a></p>
<p><img class="alignnone size-full wp-image-815" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/sabi_earth.jpg" alt="sabi_earth" width="650" height="450" /></p>
<h2>SINGITA SABI SAND, SOUTH AFRICA</h2>
<p><strong>Website:</strong> <a rel="nofollow" href="http://www.singita.com/">http://www.singita.com/</a></p>
<p><img class="alignnone size-full wp-image-816" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/singita.jpg" alt="singita" width="650" height="450" /></p>
<p>These are the design parameters that we&#8217;ll be using for our contest:<br />
- Up-to date design</p>
<p>- Luxury look</p>
<p>- Unique design approach</p>
<p>- Full screen or narrow</p>
<p>- Quality of the photos</p>
<p>- Colors pleasant to the eye</p>
<p>- The quality of photos</p>
<p>And the measurements are: &#8220;0&#8243;- not matching, &#8220;1&#8243;- so-so, &#8220;2&#8243;- not bad, &#8220;3&#8243;-good. There&#8217;s no &#8220;great&#8221; here &#8212; just my own opinion.</p>
<h2>Design Elements</h2>
<table border="1">
<tbody>
<tr>
<th>Hotel</th>
<th>Up to Date Design</th>
<th>Luxury Look</th>
<th>Unique Design</th>
<th>Full Screen</th>
<th>Quality of Photos</th>
<th>Pleasant/Strong Colors</th>
<th>Total</th>
</tr>
<tr>
<td>EVASON ANA MANDARA</td>
<td>2</td>
<td>1</td>
<td>1</td>
<td>2</td>
<td>2</td>
<td>3</td>
<td>11</td>
</tr>
<tr>
<td>MANDARIN ORIENTAL</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>2</td>
<td>2</td>
<td>2</td>
<td>9</td>
</tr>
<tr>
<td>HAYMARKET HOTEL</td>
<td>2</td>
<td>3</td>
<td>3</td>
<td>2</td>
<td>1</td>
<td>3</td>
<td>14</td>
</tr>
<tr>
<td>FASANO</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>2</td>
<td>4</td>
</tr>
<tr>
<td>HUKA LODGE</td>
<td>2</td>
<td>1</td>
<td>2</td>
<td>2</td>
<td>1</td>
<td>2</td>
<td>10</td>
</tr>
<tr>
<td>SAINT-BARTH</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>2</td>
<td>4</td>
</tr>
<tr>
<td>THE SETAI</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>18</td>
</tr>
<tr>
<td>ONE ALDWYCH</td>
<td>2</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>2</td>
<td>8</td>
</tr>
<tr>
<td>THE BULGARI</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>18</td>
</tr>
<tr>
<td>HOTEL ASTORIA</td>
<td>2</td>
<td>2</td>
<td>3</td>
<td>2</td>
<td>3</td>
<td>3</td>
<td>15</td>
</tr>
<tr>
<td>YASAWA ISLAND</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>2</td>
<td>2</td>
<td>8</td>
</tr>
<tr>
<td>BAY OF FIRES</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>2</td>
<td>1</td>
<td>2</td>
<td>8</td>
</tr>
<tr>
<td>COCOA ISLAND</td>
<td>2</td>
<td>1</td>
<td>2</td>
<td>2</td>
<td>1</td>
<td>2</td>
<td>10</td>
</tr>
<tr>
<td>G HOTEL</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>6</td>
</tr>
<tr>
<td>SABI SABI EARTH LODGE</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>18</td>
</tr>
<tr>
<td>SINGITA SABI SAND</td>
<td>2</td>
<td>1</td>
<td>2</td>
<td>2</td>
<td>2</td>
<td>2</td>
<td>11</td>
</tr>
</tbody>
</table>
<h2>Usability Elements</h2>
<table border="1">
<tbody>
<tr>
<th>Hotel</th>
<th>Hotel Photos</th>
<th>Font Size</th>
<th>Several Languages</th>
<th>Reservation Form</th>
<th>Search</th>
<th>Testimonials/Promo</th>
<th>Total</th>
</tr>
<tr>
<td>EVASON ANA MANDARA</td>
<td>3</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>5</td>
</tr>
<tr>
<td>MANDARIN</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>2</td>
</tr>
<tr>
<td>HAYMARKET HOTEL</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>2</td>
<td>0</td>
<td>2</td>
<td>6</td>
</tr>
<tr>
<td>FASANO</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>2</td>
</tr>
<tr>
<td>HUKA LODGE</td>
<td>1</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>3</td>
</tr>
<tr>
<td>SAINT-BARTH</td>
<td>1</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>3</td>
</tr>
<tr>
<td>THE SETAI</td>
<td>3</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>5</td>
</tr>
<tr>
<td>ONE ALDWYCH</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>2</td>
</tr>
<tr>
<td>THE BULGARI</td>
<td>3</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>5</td>
</tr>
<tr>
<td>HOTEL ASTORIA</td>
<td>3</td>
<td>2</td>
<td>0</td>
<td>3</td>
<td>2</td>
<td>0</td>
<td>10</td>
</tr>
<tr>
<td>YASAWA ISLAND</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>2</td>
</tr>
<tr>
<td>BAY OF FIRES</td>
<td>1</td>
<td>2</td>
<td>0</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>5</td>
</tr>
<tr>
<td>COCOA ISLAND</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>3</td>
</tr>
<tr>
<td>G HOTEL</td>
<td>1</td>
<td>2</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>3</td>
<td>6</td>
</tr>
<tr>
<td>SABI SABI EARTH LODGE</td>
<td>3</td>
<td>2</td>
<td>3</td>
<td>0</td>
<td>0</td>
<td>3</td>
<td>11</td>
</tr>
<tr>
<td>SINGITA SABI SAND</td>
<td>2</td>
<td>2</td>
<td>0</td>
<td>2</td>
<td>2</td>
<td>0</td>
<td>8</td>
</tr>
</tbody>
</table>
<p>As we can see the absolute winner when we total the points is the SABI SABI EARTH LODGE reserve. What do you think guys?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatesfactory.net/articles/greedy-luxury-worlds-top-hotels.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Strange and Colorful World of Yoswadi Krutklom. Drawings and Illustrations.</title>
		<link>http://www.templatesfactory.net/articles/strange-and-colorful-world-of-yoswadi-krutklom-drawings-and-illustrations.html</link>
		<comments>http://www.templatesfactory.net/articles/strange-and-colorful-world-of-yoswadi-krutklom-drawings-and-illustrations.html#comments</comments>
		<pubDate>Wed, 15 Apr 2009 22:18:24 +0000</pubDate>
		<dc:creator>Anastasia</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[artist]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[painting]]></category>
		<category><![CDATA[Thailand]]></category>
		<category><![CDATA[Yoswadi Krutklom]]></category>

		<guid isPermaLink="false">http://www.templatesfactory.net/articles/?p=758</guid>
		<description><![CDATA[Yoswadi Krutklom is a talented artist born in Bangkok,Thailand and now living in New York. Having graduated from Savannah College of Art &#38; Design with a Master of Art in Illustration, she is now ready to face the world and show her own approach to illustration, drawing, painting and graphic design.
Illustration.







Painting.








Drawing.




Graphics.

]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" href="http://studentpages.scad.edu/~ykrutk20/index.html">Yoswadi Krutklom</a> is a talented artist born in Bangkok,Thailand and now living in New York. Having graduated from Savannah College of Art &amp; Design with a Master of Art in Illustration, she is now ready to face the world and show her own approach to illustration, drawing, painting and graphic design.</p>
<h2>Illustration.</h2>
<p style="text-align: center;"><img class="size-full wp-image-760 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos.jpg" alt="yos" width="544" height="304" /></p>
<p style="text-align: center;"><img class="size-full wp-image-761 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos1.jpg" alt="ipagellustration" width="544" height="361" /></p>
<p style="text-align: center;"><img class="size-full wp-image-762 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos2.jpg" alt="yos2" width="542" height="364" /></p>
<p style="text-align: center;"><img class="size-full wp-image-763 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos3.jpg" alt="yos3" width="543" height="444" /></p>
<p style="text-align: center;"><img class="size-full wp-image-764 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos4.jpg" alt="yos4" width="543" height="380" /></p>
<p style="text-align: center;"><img class="size-full wp-image-784 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos51.jpg" alt="yos51" width="543" height="390" /></p>
<p style="text-align: center;"><img class="size-full wp-image-766 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos6.jpg" alt="yos6" width="304" height="418" /></p>
<h2>Painting.</h2>
<p style="text-align: center;"><img class="size-full wp-image-768 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos7.jpg" alt="yos7" width="549" height="343" /></p>
<p style="text-align: center;"><img class="size-full wp-image-769 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos8.jpg" alt="ipagellustration" width="418" height="525" /></p>
<p style="text-align: center;"><img class="size-full wp-image-770 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos9.jpg" alt="ipagellustration" width="396" height="517" /></p>
<p style="text-align: center;"><img class="size-full wp-image-771 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos10.jpg" alt="ipagellustration" width="294" height="524" /></p>
<p style="text-align: center;"><img class="size-full wp-image-772 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos11.jpg" alt="ipagellustration" width="584" height="347" /></p>
<p style="text-align: center;"><img class="size-full wp-image-773 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos12.jpg" alt="ipagellustration" width="566" height="523" /></p>
<p style="text-align: center;"><img class="size-full wp-image-774 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos13.jpg" alt="yos13" width="522" height="417" /></p>
<p style="text-align: center;"><img class="size-full wp-image-775 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos14.jpg" alt="ipagellustration" width="575" height="405" /></p>
<h2>Drawing.</h2>
<p style="text-align: center;"><img class="size-full wp-image-777 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos16.jpg" alt="yos16" width="342" height="430" /></p>
<p style="text-align: center;"><img class="size-full wp-image-788 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos191.jpg" alt="yos191" width="522" height="458" /></p>
<p style="text-align: center;"><img class="size-full wp-image-778 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos17.jpg" alt="ipagellustration" width="429" height="415" /></p>
<p style="text-align: center;"><img class="size-full wp-image-789 aligncenter" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/yos181.jpg" alt="yos181" width="600" height="397" /></p>
<h2>Graphics.</h2>
<p><img class="alignnone size-full wp-image-787" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/20.jpg" alt="20" width="600" height="776" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatesfactory.net/articles/strange-and-colorful-world-of-yoswadi-krutklom-drawings-and-illustrations.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Allknowing Fog: Digital Art (photomanipulation).</title>
		<link>http://www.templatesfactory.net/articles/the-allknowing-fog-digital-art-photomanipulation.html</link>
		<comments>http://www.templatesfactory.net/articles/the-allknowing-fog-digital-art-photomanipulation.html#comments</comments>
		<pubDate>Thu, 09 Apr 2009 22:15:30 +0000</pubDate>
		<dc:creator>Anastasia</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Digital Art]]></category>
		<category><![CDATA[fog]]></category>
		<category><![CDATA[graphic art]]></category>
		<category><![CDATA[Photomanipulation]]></category>

		<guid isPermaLink="false">http://www.templatesfactory.net/articles/?p=689</guid>
		<description><![CDATA[Through this fog 

Mistic Night 

Follow me

Walking in the fog 

Trees in fog 

Fog&#8230;

Fmora myhra 

Fog

Soul of a fog 

Book of fairy tales

Castle in the fog

Fog

11
The Fog

Fog takes the hill 

Fog Walkers 

Fog is&#8230;2 

Fog

Demons of the fog 

Her Ghost in the Fog 

Fog..

21
Fog 

Winter arrives 

31
The Misty Land 

The magic of the deep forest

DaRK [...]]]></description>
			<content:encoded><![CDATA[<h2><a rel="nofollow" href="http://asumaria.deviantart.com/art/Through-this-fog-114826463">Through this fog </a></h2>
<p><img src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog191.jpg" alt="fog191" width="600" height="757" class="alignnone size-full wp-image-756" /></p>
<h2><a rel="nofollow" href="http://frozenstarro.deviantart.com/art/Mistic-Night-95386806">Mistic Night </a></h2>
<p><img class="alignnone size-full wp-image-724" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog31.jpg" alt="fog31" width="600" height="750" /></p>
<h2><a rel="nofollow" href="http://disposable-herox.deviantart.com/art/Follow-me-97451857">Follow me</a></h2>
<p><img class="alignnone size-full wp-image-719" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog26.jpg" alt="fog26" width="600" height="600" /></p>
<h2><a rel="nofollow" href="http://kokoszkaa.deviantart.com/art/walking-in-the-fog-117098458">Walking in the fog </a></h2>
<p><img class="alignnone size-full wp-image-727" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog34.jpg" alt="fog34" width="600" height="605" /></p>
<h2><a rel="nofollow" href="http://leilaaaaah.deviantart.com/art/trees-in-fog-105499810">Trees in fog </a></h2>
<p><img class="alignnone size-full wp-image-713" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog20.jpg" alt="fog20" width="600" height="594" /></p>
<h2><a rel="nofollow" href="http://grandeombre.deviantart.com/art/Fog-91892958">Fog&#8230;</a></h2>
<p><img class="alignnone size-full wp-image-702" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog2.jpg" alt="fog2" width="600" height="962" /></p>
<h2><a rel="nofollow" href="http://night-fate.deviantart.com/art/fmora-myhra-68858634">Fmora myhra </a></h2>
<p><img class="alignnone size-full wp-image-733" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog42.jpg" alt="fog42" width="600" height="601" /></p>
<h2><a rel="nofollow" href="http://ohaniella.deviantart.com/art/Fog-95458347">Fog</a></h2>
<p><img class="alignnone size-full wp-image-701" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog1.jpg" alt="fog1" width="650" height="433" /></p>
<h2><a rel="nofollow" href="http://christasvengel.deviantart.com/art/Soul-of-a-fog-99541853">Soul of a fog </a></h2>
<p><img class="alignnone size-full wp-image-716" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog23.jpg" alt="fog23" width="650" height="771" /></p>
<h2><a rel="nofollow" href="http://lillucyka.deviantart.com/art/Book-of-fairy-tales-100339397">Book of fairy tales</a></h2>
<p><img class="alignnone size-full wp-image-735" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog44.jpg" alt="fog44" width="650" height="470" /></p>
<h2><a rel="nofollow" href="http://zx20.deviantart.com/art/Castle-in-the-fog-92387923">Castle in the fog</a></h2>
<p><img class="alignnone size-full wp-image-715" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog22.jpg" alt="fog22" width="650" height="488" /></p>
<h2><a rel="nofollow" href="http://abra-art.deviantart.com/art/Fog-95144731">Fog</a></h2>
<p><img class="alignnone size-full wp-image-703" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog10.jpg" alt="fog10" width="650" height="454" /></p>
<p>11</p>
<h2><a rel="nofollow" href="http://soleildenuit.deviantart.com/art/The-Fog-31876105">The Fog</a></h2>
<p><img class="alignnone size-full wp-image-706" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog13.jpg" alt="fog13" width="650" height="824" /></p>
<h2><a rel="nofollow" href="http://joaosemcor.deviantart.com/art/fog-takes-the-hill-110478204">Fog takes the hill </a></h2>
<p><img class="alignnone size-full wp-image-705" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog12.jpg" alt="fog12" width="650" height="650" /></p>
<h2><a rel="nofollow" href="http://kateyourmate.deviantart.com/art/Fog-Walkers-102574759">Fog Walkers </a></h2>
<p><img class="alignnone size-full wp-image-708" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog15.jpg" alt="fog15" width="650" height="357" /></p>
<h2><a rel="nofollow" href="http://etanolka.deviantart.com/art/fog-is-2-110460699">Fog is&#8230;2 </a></h2>
<p><img class="alignnone size-full wp-image-730" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog38.jpg" alt="fog38" width="650" height="380" /></p>
<h2><a rel="nofollow" href="http://crazyivan969.deviantart.com/art/Fog-61866126">Fog</a></h2>
<p><img class="alignnone size-full wp-image-709" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog16.jpg" alt="fog16" width="650" height="493" /></p>
<h2><a rel="nofollow" href="http://heimrich.deviantart.com/art/Demons-of-the-fog-14824843">Demons of the fog </a></h2>
<p><img class="alignnone size-full wp-image-710" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog17.jpg" alt="fog17" width="650" height="650" /></p>
<h2><a rel="nofollow" href="http://cradleoffilth.deviantart.com/art/Her-Ghost-in-the-Fog-Chihiro-18963504">Her Ghost in the Fog </a></h2>
<p><img class="alignnone size-full wp-image-718" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog25.jpg" alt="fog25" width="650" height="503" /></p>
<h2><a rel="nofollow" href="http://schwarzekatze18.deviantart.com/art/fog-38116106">Fog..</a></h2>
<p><img class="alignnone size-full wp-image-711" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog18.jpg" alt="fog18" width="650" height="483" /></p>
<p>21</p>
<h2><a rel="nofollow" href="http://virginval.deviantart.com/art/Fog-38056876">Fog </a></h2>
<p><img class="alignnone size-full wp-image-720" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog27.jpg" alt="fog27" width="650" height="501" /></p>
<h2><a rel="nofollow" href="http://tenteri.deviantart.com/art/Winter-arrives-77036517">Winter arrives </a></h2>
<p><img class="alignnone size-full wp-image-723" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog30.jpg" alt="fog30" width="650" height="456" /></p>
<p>31</p>
<h2><a rel="nofollow" href="http://frozenstarro.deviantart.com/art/The-Misty-Land-103965545">The Misty Land </a></h2>
<p><img class="alignnone size-full wp-image-725" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog32.jpg" alt="fog32" width="650" height="737" /></p>
<h2><a rel="nofollow" href="http://cherille.deviantart.com/art/The-magic-of-the-deep-forest-43424520">The magic of the deep forest</a></h2>
<p><img class="alignnone size-full wp-image-726" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog33.jpg" alt="fog33" width="650" height="488" /></p>
<h2><a rel="nofollow" href="http://day-light.deviantart.com/art/DaRK-FoReST-75305243s">DaRK FoReST</a></h2>
<p><img class="alignnone size-full wp-image-728" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog35.jpg" alt="fog35" width="600" height="600" /></p>
<h2><a rel="nofollow" href="http://mosredna.deviantart.com/art/some-place-28656196">Some place</a></h2>
<p><img class="alignnone size-full wp-image-729" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog36.jpg" alt="fog36" width="650" height="476" /></p>
<h2><a rel="nofollow" href="http://karezoid.deviantart.com/art/The-Road-to-Wirikuta-99695562">The Road to Wirikuta </a></h2>
<p><img class="alignnone size-full wp-image-731" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog39.jpg" alt="fog39" width="650" height="650" /></p>
<p>41</p>
<h2><a rel="nofollow" href="http://fallenrox.deviantart.com/art/Familiars-45348641">Familiars</a></h2>
<p><img class="alignnone size-full wp-image-732" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog41.jpg" alt="fog41" width="650" height="904" /></p>
<h2><a rel="nofollow" href="http://bucz.deviantart.com/art/Come-down-72403955">Come down </a></h2>
<p><img class="alignnone size-full wp-image-734" src="http://www.templatesfactory.net/articles/wp-content/uploads/2009/04/fog43.jpg" alt="fog43" width="650" height="433" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.templatesfactory.net/articles/the-allknowing-fog-digital-art-photomanipulation.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
