<?xml version="1.0"?>
<News hasArchived="true" page="8361" pageCount="10731" pageSize="10" timestamp="Thu, 23 Jul 2026 03:07:52 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8361">
<NewsItem contentIssues="true" id="35028" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35028">
<Title>Designing For Emotion With Hover Effects</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <table width="650">
    <tbody>
    <tr>
    <td>
    <div>
    <img src="http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif" alt="" style="max-width: 100%; height: auto;"><br><a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3" alt="" style="max-width: 100%; height: auto;"></a>
    </div>
    </td>
    </tr>
    </tbody>
    </table>
    <p>Of the many factors that must be considered in Web design, emotional interaction is an important, but frequently neglected, component. In the real world, <strong>we experience the sensual interaction of design all the time</strong>. Reflect for a moment on the emotional engagement of slipping behind the wheel of a powerful luxury car: the welcoming embrace of the driving seat, the tactile experience of running your hands over the leather on the steering wheel, the subtle gleam reflected in the controls.</p>
    <p>There is no technical requirement for any of these finely crafted details: The vehicle would perform equally well without them. Yet this singular focus on sensual and emotional engagement is what separates luxury goods from all others and what inspires deep loyalty from customers.</p>
    <p>This <strong>drive for emotional design can be discovered in the most surprising places</strong>. Take the power light on the next to last-generation Apple MacBook. The company deserves credit for helping thousands of users avoid entanglements with power cords though the MagSafe connector, but the deeper emotional intimacy is held in the tiniest of details: the power status light on the front of the laptop. When in sleep mode, the light pulses, and not randomly: It does so 10 times a minute, the breathing rate of a resting human being.</p>
    <p><a href="http://www.flickr.com/photos/mjs/3046240921" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/09/macbook-sleep-light_mini.jpg" alt="macbook sleep light_mini" width="500" height="333" style="max-width: 100%; height: auto;"></a><br>
    <em>The blink rate of Apple’s MacBook in sleep mode falls within the average breathing rate of a resting adult. (Image source: <a href="http://www.flickr.com/photos/mjs/3046240921" rel="nofollow external" class="bo">Michael Stillwell</a>)</em></p>
    <p>To take another example: The front of a car is not two headlights and a grill. It is a face, one with its own character and communication. Look at cars and vans marketed to suburban mothers, on which lines tend to be round, curved, welcoming and friendly.</p>
    <p>The front of the vehicle often demonstrates the neotenic effect: We regard “eyes” (headlights) that are larger than the body as being cute, safe, loveable. Compare this to the visual communication of vehicles marketed to men, particularly sports cars: Those lines are angular and aggressive, right down to the slitted eyes.</p>
    <p><a href="http://www.flickr.com/photos/tonyshek/8454936722" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/09/sport-car-front_mini.jpg" alt="sport car front_mini" width="500" height="359" style="max-width: 100%; height: auto;"></a><br>
    <em>Note how a sports car’s front interacts with you on an emotional level. (Image source: <a href="http://www.flickr.com/photos/tonyshek/8454936722" rel="nofollow external" class="bo">GabboT</a>)</em></p>
    <h3>Designing For Emotion</h3>
    <p>We can strive to achieve the same emotional engagement on websites — a promise to delight, surprise and affect users without resorting to manipulation or being too saccharine. While the digital realm lacks many sensual cues, it is possible to impart an emotional experience through a careful selection of color, stroke and typography.</p>
    <p><strong>CSS transitions help us to make interactions more human</strong>: Rather than flicking from one state to another, we can ease the motion of an element over a few hundred milliseconds to make a website feel more inviting. Paradoxically, the same techniques can also make a website feel faster, especially if we use the opportunity to preload content.</p>
    <p>In creating such experiences, we must avoid the mistakes of the past: The engagement should encourage the visitor to explore the website, but should never hide important components such as navigation. Rewards for exploration should be a treated as a bonus, rather than a required interaction. Any information shared should also be accessible to those who don’t have the time or ability to use the interface.</p>
    <h3>Surprise In Boxes</h3>
    <p>(Please <a href="http://codepen.io/dudleystorey/pen/bkKDp" rel="nofollow external" class="bo">see the demo at “Hover Effect on Images From Different Directions Using Pure CSS,”</a> on CodePen.)</p>
    <p>One way to design for emotional surprise and stimulation might be to present different panes of information according to the way the user hovers over a responsive image. For this example, I’ll use a photo of the spiral galaxy NGC 1309, added to an HTML5 page:</p>
    <pre><code>&#x000A;    &lt;img src="ngc-1309.jpg" alt=""&gt;&#x000A;    </code></pre>
    <p>(Note that I’ve intentionally left the <code>alt</code> value of the image blank. We’ll return to that attribute shortly.)</p>
    <p>The information panels are created from four <code>span</code> elements, with the entire group wrapped in a <code>div</code> tag that includes a <code>class</code>:</p>
    <pre><code>&#x000A;    &lt;div class="multi-hover"&gt;&#x000A;        &lt;span&gt;Spiral Galaxy NGC 1309&lt;/span&gt;&#x000A;        &lt;span&gt;Approximately 120 million light years from Earth&lt;/span&gt;&#x000A;        &lt;span&gt;Home to several Cephid variable stars&lt;/span&gt;&#x000A;        &lt;span&gt;Member of the Eridanus galactic cloud&lt;/span&gt;&#x000A;        &lt;img src="ngc-1309.jpg" alt=""&gt;&#x000A;    &lt;/div&gt;&#x000A;    </code></pre>
    <p>We’ll write the CSS transition code sans vendor prefixes: Internet Explorer 10 does not use prefixes for animation, Firefox no longer requires them, Chrome is not far behind, and a piece of JavaScript magic such as Lea Verou’s <a href="http://leaverou.github.com/prefixfree/" rel="nofollow external" class="bo">-prefix-free</a> will take care of those browsers that still do.</p>
    <pre><code>&#x000A;    .multi-hover {&#x000A;    	position: relative;&#x000A;    	font-family: Orbitron, sans-serif;&#x000A;    	max-width: 500px;&#x000A;    	line-height: 0;&#x000A;    }&#x000A;    &#x000A;    .multi-hover img {&#x000A;    	max-width: 100%;&#x000A;    }&#x000A;    &#x000A;    .multi-hover span {&#x000A;    	position: absolute;&#x000A;    	width: 100%;&#x000A;    	height: 100%;&#x000A;    	line-height: 1.5;&#x000A;    	font-weight: 100;&#x000A;    	text-align: center;&#x000A;    	box-sizing: border-box;&#x000A;    	font-size: 3em;&#x000A;    	transition: .3s linear;&#x000A;    	color: white;&#x000A;    	padding: 15%;&#x000A;    	opacity: 0;&#x000A;    }&#x000A;    </code></pre>
    <p>The CSS takes advantage of the rule that <strong>absolutely positioned elements inside relative containers will be transformed relative to their parent</strong>. Because the image determines the height and width of the <code>div</code>, the <code>span</code> elements will always be exactly the same size, protected from growing further by the use of <code>box-sizing</code>, <code>max-width</code> and <code>line-height: 0</code>. In this example, I’m using <a href="http://www.theleagueofmoveabletype.com/orbitron" rel="nofollow external" class="bo">Orbitron</a> by <a href="http://www.theleagueofmoveabletype.com/" rel="nofollow external" class="bo">The League of Moveable Type</a> as an appropriate typeface.</p>
    <p>Next, locate the <code>span</code> elements, so that each lies just over the inner edge of the image. We’ll do so by writing offsets from the containing <code>div</code> in percentages, to keep everything responsive:</p>
    <pre><code>&#x000A;    .multi-hover span:nth-child(1) {&#x000A;    	top: 0;&#x000A;    	left: 90%;&#x000A;    	background: hsla(0,70%,50%,0.6);  } /* right panel */&#x000A;    &#x000A;    .multi-hover span:nth-child(2) {&#x000A;    	top: -90%;&#x000A;    	left: 0;&#x000A;    	background: hsla(90,70%,50%,0.6); } /* top panel */   &#x000A;    &#x000A;    .multi-hover span:nth-child(3) {&#x000A;    	top: 0;&#x000A;    	left: -90%;&#x000A;    	background: hsla(180,70%,50%,0.6); } /* left panel */  &#x000A;    &#x000A;    .multi-hover span:nth-child(4) {&#x000A;    	top: 90%;&#x000A;    	left: 0;&#x000A;    	background: hsla(270,70%,50%,0.6); } /* bottom panel */&#x000A;    </code></pre>
    <p>As you’ll see in a moment, the order of the panel declarations matters. The result looks something like this:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/09/span-array-full_large_mini.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/09/span-array-full_500_mini.jpg" alt="Positioned span elements with text." width="500" height="501" style="max-width: 100%; height: auto;"></a><br>
    <em>Positioned span elements with text. (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/09/span-array-full_large_mini.jpg" rel="nofollow external" class="bo">Large view</a>)</em></p>
    <p>To clip the outside edges of the panels, use <code>overflow: hidden</code> on the containing <code>div</code>:</p>
    <pre><code>&#x000A;    .multi-hover {&#x000A;    	position: relative;&#x000A;            overflow: hidden;&#x000A;    	font-family: Orbitron, sans-serif;&#x000A;    </code></pre>
    <p>Now, the result appears like this:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/09/span-array-hit-areas_mini.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/09/span-array-hit-areas_mini.jpg" alt="Span elements clipped to image." width="500" height="497" style="max-width: 100%; height: auto;"></a></p>
    <p>The colored sections we can see for now will function as the “hit areas” of our panels. Increasing the size of these areas will increase the panel’s ability to respond to quicker and broader mouse movements, but will also increase the overlap between them, making it more likely that a different panel will be activated than the one expected.</p>
    <p>Finally, we’ll hide the panels entirely by setting their <code>opacity</code> to <code>0</code> and moving them on <code>hover</code>, taking advantage of the fact that transparent elements still respond to mouse events.</p>
    <pre><code>&#x000A;    .multi-hover span {&#x000A;    	position: absolute;&#x000A;    	width: 100%;&#x000A;    	height: 100%;&#x000A;    	line-height: 1.5;&#x000A;    	font-weight: 100;&#x000A;            z-index: 2;&#x000A;    	text-align: center;&#x000A;    	box-sizing: border-box;&#x000A;    	font-size: 3em;&#x000A;    	transition: .3s linear;&#x000A;    	color: white;&#x000A;    	padding: 15%;&#x000A;    	opacity: 0;&#x000A;    }&#x000A;    &#x000A;    .multi-hover span:hover {&#x000A;    	opacity: 1;&#x000A;    }&#x000A;    &#x000A;    .multi-hover span:nth-child(odd):hover {&#x000A;    	left: 0;&#x000A;            z-index: 3;&#x000A;    }&#x000A;    &#x000A;    .multi-hover span:nth-child(even):hover {&#x000A;    	top: 0;&#x000A;            z-index: 3;&#x000A;    }&#x000A;    </code></pre>
    <p>The <code>odd</code> and <code>even</code> declarations set each panel to the opposite side of the box, positioning them entirely over the image and completing the design. Note that this interface pattern requires exploratory mouse movement from the outside of the box inwards to activate each panel; alternately, a completely “in box” exploration model could be created by lowering the <code>z-index</code> of the <code>:hover</code> states to 1.</p>
    <h3>Accessibility Testing</h3>
    <p>Making the panels invisible brings up the issue of accessibility. Partially sighted users <em>might</em> be able to see and interact with the panels, but blind users obviously will not.</p>
    <p>Screen readers treat such content as being truly “invisible” (leaving them, therefore, unread), depending on the context; content that is set to <code>display: none</code> is usually left unread, for example. However, opacity does <em>not</em> trigger this behavior. On a Mac, you can easily test this by activating VoiceOver and having it read the page we’ve created in the browser:</p>
    <ul>
    <li>
    <code>Command + F5</code> to start VoiceOver,</li>
    <li>
    <code>Control + Option + A</code> to read Web page content,</li>
    <li>
    <code>Command + F5</code> to stop VoiceOver.</li>
    </ul>
    <p>You’ll hear the <code>span</code> content being read in the order that it appears on the page; all that’s missing is a description of the image at the end:</p>
    <pre><code>&#x000A;    &lt;div class="multi-hover"&gt;&#x000A;    &lt;span&gt;Spiral Galaxy NGC 1309&lt;/span&gt;&#x000A;    &lt;span&gt;Approximately 120 million light years from Earth&lt;/span&gt;&#x000A;    &lt;span&gt;Home to several Cephid variable stars&lt;/span&gt;&#x000A;    &lt;span&gt;Member of the Eridanus galactic cloud&lt;/span&gt;&#x000A;    &lt;img src="ngc-1309.jpg" alt="Photograph of NGC 1309"&gt;&#x000A;    &lt;/div&gt;&#x000A;    </code></pre>
    <p>Note that this only treats the visual aspects of accessibility. There are other important areas (cognitive, motor and language) that I will leave unaddressed in this example for the sake of space but that have been <a href="http://www.smashingmagazine.com/search-results/?q=accessibility&amp;cx=partner-pub-6779860845561969%3A5884617103&amp;cof=FORID%3A10&amp;ie=UTF-8" rel="nofollow external" class="bo">detailed by other Smashing Magazine authors</a>.</p>
    <h3>Adding Touch Support</h3>
    <p>The majority of mobile devices that depend on touch interfaces do not support a pure “hover” state: <strong>An element is either “in touch” or not.</strong> With rare exceptions, there is no registration of a fingertip being just above the screen of a mobile device. A brief touch <em>might</em> be interpreted as a hover event by mobile browsers, but this behavior is not perfectly predictable. As such, our interface will not work on most tablets or phones, at least as it currently exists.</p>
    <p>To solve this issue, <strong>we’ll add a little JavaScript</strong> (by way of jQuery) to the page:</p>
    <pre><code>&#x000A;    &lt;script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"&gt;&#x000A;    &lt;/script&gt;&#x000A;    &lt;script&gt;&#x000A;    function is_touch_device() {&#x000A;      return !!('ontouchstart' in window) &#x000A;          || !!('onmsgesturechange' in window); &#x000A;    };&#x000A;    &#x000A;    $(document).ready(function() {&#x000A;      if (is_touch_device()) {&#x000A;        $('span').unbind('mousenter mouseleave touchend touchstart');&#x000A;        $('span').bind('touchstart', function() {&#x000A;          $('span').removeClass('hover');&#x000A;          $(this).addClass('hover');&#x000A;        });&#x000A;      }&#x000A;    });&#x000A;    &lt;/script&gt;&#x000A;    </code></pre>
    <p>The JavaScript applies a class of <code>hover</code> to any <code>span</code> element that is touched. So, we just need to alter our CSS declarations to make this <code>class</code> equivalent to the <code>:hover</code> event:</p>
    <pre><code>&#x000A;    .multi-hover span:hover { opacity: 1; }&#x000A;    .multi-hover span:nth-child(odd):hover { left: 0; z-index: 3; }&#x000A;    .multi-hover span:nth-child(odd).hover { left: 0; z-index: 1; }&#x000A;    .multi-hover span:nth-child(even):hover { top: 0; z-index: 3; }&#x000A;    .multi-hover span:nth-child(even).hover { top: 0; z-index: 1; } &#x000A;    }&#x000A;    </code></pre>
    <p>Note that in the mobile version, the extended panel goes “under” the level of those that are retracted, allowing them to be tapped.</p>
    <p>Disengaging the copy controls on handheld devices might also be wise. This is not some futile pursuit of DRM, but a practical response to the fact that <strong>longer touch times on mobile devices can bring up copy prompts</strong> that could get in the way of the user interface:</p>
    <pre><code>&#x000A;    .multi-hover span {&#x000A;      -ms-touch-action: none;&#x000A;      -webkit-touch-callout: none;&#x000A;      -webkit-user-select: none;&#x000A;    }&#x000A;    </code></pre>
    <p>This user interface pattern of exploration on a mobile device may now be described as “tap on edge.” This could be further enhanced by increasing the overlap of the original position of the <code>span</code> elements in an <code>@media</code> query to provide larger hotspots, making the panels easier to activate, along with further improvements for smartphones. This code is not the only way to achieve this effect either: Ana Tudor has written an <a href="http://codepen.io/thebabydino/pen/mIxhv" rel="nofollow external" class="bo">alternative technique using CSS transforms and SASS</a>.</p>
    <h3>Conclusion</h3>
    <p>Crafting an element of surprise on Web pages can <strong>raise visitor engagement</strong> without obfuscating important content, sidelining mobile visitors or disadvantaging users who require accessibility features. Naturally, this must always be balanced with the need to guide users through the website: Visitors will only be surprised by the effects described here if they explore the page for themselves, or are led to it. How much users should be led and how much opportunity they should be given to discover a delight on their own initiative is a central question of user experience design.</p>
    <p><em>(al) (ea)</em></p>
    <hr>
    <p><small>© Dudley Storey for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        Of the many factors that must be considered in Web design, emotional interaction is an important, but frequently neglected, component. In the real world, we experience the sensual...</Summary>
<Website>http://www.smashingmagazine.com/2013/09/02/designing-for-emotion-with-hover-effects/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35028/guest@my.umbc.edu/efaf258f5fadada38c18abb1427aa114/api/pixel</TrackingUrl>
<Tag>coding</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 02 Sep 2013 10:27:42 -0400</PostedAt>
<EditAt>Mon, 02 Sep 2013 10:27:42 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="35029" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35029">
<Title>Sell your domains with Namebox</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="Sell your domains with Namebox" src="http://netdna.webdesignerdepot.com/uploads/2013/08/thumbnail33.jpg" width="200" height="160" style="max-width: 100%; height: auto;"><a href="http://namebox.io/" rel="nofollow external" class="bo">Namebox</a> is a simple service created by designer Drew Wilson to help you sell your unwanted and/or unused web domains. It’s free to use and is built to make listing your domains quick and easy.</p> <p>For those of you that are unfamiliar with Drew and his work, he’s well renowned for building his own products from start to finish all by himself, and Namebox is no exception. In fact, in this case, he built the whole thing in just two days! That includes doing everything from the design to writing the front and back end code as well as writing the copy.</p> <p><a href="http://namebox.io" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/namebox.jpg" width="650" alt="Sell your domains with Namebox" style="max-width: 100%; height: auto;"></a></p> <p>Not only is the speed at which the site was built impressive, but also how quickly it began to take off. Within the first 24 hours there was 15,000 visitors, 800 sign ups, and over 2,100 domains listed.</p> <p>Whether you’re looking to buy or sell a domain, I highly recommend that you check it out.</p> <p><em><strong>What do you think of Namebox? Will you be using the service to sell your unwanted domains? Let us know in the comments.</strong></em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/flatpad-ui-toolkit.html?ref=inwidget" rel="nofollow external" class="bo"><strong>FLATPAD: A Twitter Bootstrap-Friendly UI Design Bundle – only $9!</strong></a> </td> <td> <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br> <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" alt="Sell your domains with Namebox" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/09/sell-your-domains-with-namebox/" rel="nofollow external" class="bo">Source</a> <br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fsell-your-domains-with-namebox%2F&amp;t=Sell+your+domains+with+Namebox" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fsell-your-domains-with-namebox%2F&amp;t=Sell+your+domains+with+Namebox" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fsell-your-domains-with-namebox%2F&amp;t=Sell+your+domains+with+Namebox" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fsell-your-domains-with-namebox%2F&amp;t=Sell+your+domains+with+Namebox" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fsell-your-domains-with-namebox%2F&amp;t=Sell+your+domains+with+Namebox" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/174726474410/u/49/f/661066/c/35285/s/30b2f8b5/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726474410/u/49/f/661066/c/35285/s/30b2f8b5/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Namebox is a simple service created by designer Drew Wilson to help you sell your unwanted and/or unused web domains. It’s free to use and is built to make listing your domains quick and easy....</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/30b2f8b5/sc/4/l/0L0Swebdesignerdepot0N0C20A130C0A90Csell0Eyour0Edomains0Ewith0Enamebox0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35029/guest@my.umbc.edu/44b8a93ed9127df734416b54f6550a7f/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>business</Tag>
<Tag>cool-sites</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>make-money</Tag>
<Tag>mysql</Tag>
<Tag>namebox</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sell-domains</Tag>
<Tag>sql</Tag>
<Tag>web-design-income</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 02 Sep 2013 10:15:59 -0400</PostedAt>
<EditAt>Mon, 02 Sep 2013 10:15:59 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="35026" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35026">
<Title>Fur the More</Title>
<Tagline>Marylands first and finest convention returns!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <a href="http://www.furthemore.org/">http://www.furthemore.org/</a><br><br>Beginning on March 14, Fur the More is probably the closest and most convenient convention for any UMBC furry. Preregistration is currently open and we encourage everyone who is able to sign up! Hopefully that will prevent us from forgetting to attend like last year... o how school can creep up on you!<br><br>Additionally, Fur the More intends to create a promotional video for their Pirates and Ninjas theme this year! (link: <a href="http://www.furthemore.org/2013/09/fur-the-more-promo-video-call/">http://www.furthemore.org/2013/09/fur-the-more-promo-video-call/</a> ) If you can participate, what better way to figure out who some of the attendees are going to be, while having fun? Though there is no official plan thus far, F5 very well might attempt to attend in its entirety. Grab yer cutlasses... or shuriken...<br>
    </div>
]]>
</Body>
<Summary>http://www.furthemore.org/  Beginning on March 14, Fur the More is probably the closest and most convenient convention for any UMBC furry. Preregistration is currently open and we encourage...</Summary>
<Website>http://www.furthemore.org/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35026/guest@my.umbc.edu/807805e6c8e3fabcfcc9fabc02451407/api/pixel</TrackingUrl>
<Group token="retired-489">Federation of Furry Fans of the Furry Fandom</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-489</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/images/avatars/group/7/xsmall.png?1784760752</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/7/original.png?1784760752</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/7/xxlarge.png?1784760752</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/images/avatars/group/7/xlarge.png?1784760752</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/images/avatars/group/7/large.png?1784760752</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/7/medium.png?1784760752</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/7/small.png?1784760752</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/images/avatars/group/7/xsmall.png?1784760752</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/images/avatars/group/7/xxsmall.png?1784760752</AvatarUrl>
<Sponsor>Federation of Furry Fans of the Furry Fandom</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 02 Sep 2013 09:09:54 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35024" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35024">
<Title>Popular Methods for Online Storytelling</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>The act of storytelling is present in every culture.  Storytelling, when done well, can move people to take action.</p>
    <p>The way we tell stories has evolved drastically over time. We constantly find new methods for preserving and sharing our stories: From drawings on cave walls, verbal recounting passed down from generation to generation and songs to more modern ways like newspapers, books, audio and video recordings.</p>
    <p></p>
    <p>The newest place to tell stories is the Internet. And like with any other medium, telling stories online is a very powerful tool for communicating your message. Online Storytelling help us engage and captivate our website visitors.</p>
    <p>Let’s take a look at how you can get the most out of <strong>online storytelling</strong> by going through the most common ways we tell stories on the Web, as well as by discussing a few examples of good online storytelling.</p>
    <h3>Storytelling Through Text</h3>
    <p>While contemporary web technologies allow for all <a href="http://sixrevisions.com/user-interface/6-popular-content-presentation-design-patterns/" title="6 Popular Content Presentation Design Patterns" rel="nofollow external" class="bo">different kinds of content presentation,</a> text is still one of the most common methods for telling stories on the Internet.</p>
    <p>Textual content can be very effective, and sometimes it’s the only option that makes sense or is practical. Written stories (like blog posts, essays, articles, and e-books) are generally easier to produce compared to other methods such as video and audio.</p>
    <p>However, people <a href="http://www.nngroup.com/articles/how-little-do-users-read/" title="How Little Do Users Read?" rel="nofollow external" class="bo"> only read between 20-28% of the words on a web page</a> on average. Furthermore, eye-tracking usability studies show that <a href="http://www.nngroup.com/articles/f-shaped-pattern-reading-web-content/" title="F-Shaped Pattern For Reading Web Content" rel="nofollow external" class="bo">we tend to scan</a> rather than completely read web pages.</p>
    <p>So text might be a <em>popular type</em> of content on the Web, but it’s not necessarily the most <em>engaging type</em> because people just don’t read as much as we would like them to.</p>
    <p>We need to give people a reason to get reading and then keep up their interest so they don’t stop.</p>
    <p>By packaging your content in a good story, you can do just that.</p>
    <p>You can build a captivating story about pretty much anything: your product, your company, your team, your vision, your customers, your experience, etc.</p>
    <p>Make your story personal, fun, obscure, provocative, and anything else you can do to capture your readers’ interest.</p>
    <p>Let your imagination run wild and offer your visitors more than just boring facts. </p>
    <h4>Examples of Storytelling Through Text</h4>
    <h5>
    <strong>Campaign Monitor</strong>‘s "Our Story"</h5>
    <p>Campaign Monitor knows how to employ storytelling on their website. On their <a href="http://www.campaignmonitor.com/our-story/" rel="nofollow external" class="bo">"Our Story"</a> page, you can learn about the company history, their motivation, and their vision.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-01_storytelling_example_campaignmonitor.jpg" width="550" height="1139" style="max-width: 100%; height: auto;"></p>
    <p>Not only is the text readable (it’s short and well-structured), it’s also engaging because it’s written informally by design.</p>
    <p>The story starts with basic facts about the company, followed by an appealing photo of the team and a personal quote about the company’s goal. The tone of voice is casual and direct. In case you get bored, there are more team pictures to give you a glance "behind the scenes" and to keep you engaged.</p>
    <h5>Goruck</h5>
    <p>Goruck manufactures and sells high-end backpacks.</p>
    <p>The founder of Goruck, Jason McCarthy, tells stories about why and how their bags are developed to make potential customers appreciate the work and the thoughtfulness in the design and manufacturing of the company’s products.</p>
    <p>Jason tells the story through their blog and in other sections of the website. <a href="http://news.goruck.com/gear-explained/gr2-travels-explained-by-jason/" rel="nofollow external" class="bo">One such story</a> is how he used their newest product (which is called the Goruck GR2) on a trip to Shanghai. Throughout the narrative, he outlines why the bag was developed for the purpose of travelling.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-02_storytelling_example_goruck.jpg" width="550" height="705" style="max-width: 100%; height: auto;"></p>
    <p>By publishing stories in your blog, you have the opportunity to really engage and connect with your readers.</p>
    <p>The <a href="https://www.goruck.com/Origins" rel="nofollow external" class="bo">Goruck "About" page</a> is also written like a story instead of what we commonly find in most other company "About" pages that are stuffy and too formal. Instead of a photo of their products, there is a real photo of Jason at the top of the Goruck "About" page.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-03_storytelling_example_goruck02.jpg" width="550" height="1073" style="max-width: 100%; height: auto;"></p>
    <h3>Storytelling Through Visuals</h3>
    <p>Still images can tell stories. <em>A picture is worth a thousand words </em>as the adage goes.</p>
    <p>Visuals are very efficient in conveying a story because our brains can process them <a href="http://www.billiondollargraphics.com/infographics.html" rel="nofollow external" class="bo">60,000 times faster than text.</a></p>
    <p>You can write a whole lot of text to explain how your product works, how it makes people feel, and where they can use it. Or you can show a couple of pictures of real people using your product.</p>
    <p>Images can tell stories and, at the same time, they leave a lot of room for personal interpretation.</p>
    <p>There are three main types of visuals that can be used as Web content for storytelling:</p>
    <ol>
    <li>Web images in your content (such as photos, sketches, illustrations, graphs, and charts)</li>
    <li>Background images</li>
    <li>Infographics</li>
    </ol>
    <p>Using images with your content can supplement your textual content, and can help move your story forward.</p>
    <p>Background images can draw website visitors in and put them in a certain mood. They can give people a good idea about the story you’re about to tell. Background images can help you build your site on  a story.</p>
    <p>Infographics are a great way to communicate a story. People like infographics because they are easy to consume and fun to share on their social networks. Infographics are popular because they can hold a lot of information while using very little text.</p>
    <h4>Examples of Storytelling Through Visuals </h4>
    <h5>Testflight</h5>
    <p>People love the idea of interacting with actual human beings. That’s what <a href="https://testflightapp.com/" rel="nofollow external" class="bo">Testflight</a> is able to do for me with their visuals.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-04_storytelling_example_testflight.jpg" width="550" height="812" style="max-width: 100%; height: auto;"></p>
    <p>For some of their key content, Testflight uses blueprint-style sketches for images. Somehow this feels like you are in a room with them and they just made these sketches a minute ago to talk you through their work step by step.</p>
    <p>Hand-sketched visuals can give your stories a personal touch, helping you connect with your visitors. It makes your story more authentic.</p>
    <h5>Airbnb</h5>
    <p>The site of <a href="https://www.airbnb.com/locations/london" rel="nofollow external" class="bo">Airbnb</a> welcomes you with big and beautiful background images; a different one for each travel destination you select.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-05_storytelling_example_airbnb.jpg" width="550" height="608" style="max-width: 100%; height: auto;"></p>
    <p>These background images give you a great feeling of the featured destinations, stirring your emotions, and giving you itchy feet to travel.</p>
    <p>Airbnb tells different stories from around the world and invites you to become part of these stories.</p>
    <h5>StumbleUpon</h5>
    <p>Background images can also serve as a metaphor to help you explain abstract concepts and attract your visitors’ attention.</p>
    <p>The <a href="http://www.stumbleupon.com/" rel="nofollow external" class="bo">StumbleUpon</a> homepage is kept very simple: It consists of a simple header, a few lines of text, a call to action that invites you to "Start Exploring," and a huge background image.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-06_storytelling_example_su.jpg" width="550" height="349" style="max-width: 100%; height: auto;"></p>
    <p>At first glance, the background image is just a pretty image.</p>
    <p>However, when you look closer, you will see that it perfectly reflects what StumbleUpon is about: Exploring the Web. Doesn’t the scene remind you of one of those warm summer nights when you were still a child? I remember myself playing outside in the garden, exploring the world with all its beautiful details and little wonders — a cherished story from my childhood.</p>
    <h5>Web Designers vs. Web Developers Infographic</h5>
    <p>Here is an infographic on Six Revisions that tells you <a href="http://sixrevisions.com/infographics/web-designers-vs-web-developers-infographic/" rel="nofollow external" class="bo">the story of web design and web development</a> through infographics. The story satirically portrays the people who are part of the web design and web development industry.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-08_storytelling_example_web_dev_design.jpg" width="550" height="819" style="max-width: 100%; height: auto;"></p>
    <p><strong>Water Down Infographic</strong></p>
    <p><a href="http://awesome.good.is.s3.amazonaws.com/transparency/web/1106/clean-water/flat.html" rel="nofollow external" class="bo">Water Down</a> is another infographic that tells a story; the true story of the lack of access to clean water in the world.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-07_storytelling_example_waterdowninfographic.png" width="550" height="330" style="max-width: 100%; height: auto;"></p>
    <p>The story starts with the amount of water available on the planet and ends with the fact that every 20 seconds a child dies from water-borne illnesses.</p>
    <p>With infographics, you decide just how many pieces of the puzzle you need to get the entire picture.</p>
    <h3>Storytelling Through Animated Interaction</h3>
    <p>One aspect of good storytelling is entertainment. When people are entertained, they will be more likely to listen to your story.</p>
    <p>Good stories are fun, scary, heartwarming, and so forth. They appeal to our emotions.</p>
    <p>That’s why we tend to think of storytelling as a gift.</p>
    <p>For example, you might think something along these lines: "I love this site because someone came up with this nice story that made me smile."</p>
    <p>With animated interactions, you can give your visitors such as gift.</p>
    <p>I already discussed how people love visual stories. Animations take your visuals a step further by adding motion to them.</p>
    <p>Once you’ve got people hooked, they’ll continue browsing your site to find out how the story continues. This is also an extremely positive effect of storytelling in general: It makes us curious and eager to find out what happens next.</p>
    <p>One technique for animating your content is through the use of <strong>parallax scrolling.</strong> Parallax scrolling is a relatively new technique in web design with lots of potential to <a href="http://blog.usabilla.com/15-reasons-why-parallax-scrolling-in-web-design-is-awesome/" rel="nofollow external" class="bo">improve your overall user experience.</a> It offers the ideal setting to tell your story in an engaging and interactive way. Let your visitors take control and let them walk through your story in their own pace. The different layers that respond differently to the scrolling behavior of your visitors create a sense of depth and even allow for multiple story lines.</p>
    <h4>Examples of Storytelling Through Animation</h4>
    <h5> Google’s "The Story of Send"</h5>
    <p>The animated story of what happens whenever you send an email is entertaining.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-09_storytelling_example_googlesend.png" width="550" height="401" style="max-width: 100%; height: auto;"></p>
    <p>Because their animated story is engaging, Google is able to inform and connect with their audience more successfully.</p>
    <h5>Peugeot’s "The Hybrid Graphic Novel"</h5>
    <p>A great example of storytelling through parallax scrolling is by <a href="http://graphicnovel-hybrid4.peugeot.com/start.html" rel="nofollow external" class="bo">Peugeot</a> for their new HYbrid4 technology. It’s a graphic novel that progresses as you scroll down the page. You get drawn into a story of a hero who is about to "embark on a challenging mission to capture confidential data and get away safely."</p>
    <p><img src="http://cdn.sixrevisions.com/0376-13_storytelling_example_peugeot.jpg" width="550" height="319" style="max-width: 100%; height: auto;"></p>
    <p>As you scroll down the page, you become the witness of a beautifully illustrated and captivating story, which introduces the different travel modes of the HYbrid4 technology as a side plot.</p>
    <p>The story is accompanied by music and sound highlights to make it even more engaging. There is no way you would want to leave the web page without finishing the story first.</p>
    <h5>TEDxGUC</h5>
    <p>On the <a href="http://www.tedxguc.com/" rel="nofollow external" class="bo">TEDxGUC</a> website, parallax scrolling is used on the homepage to welcome you with an interactive "TED tale."</p>
    <p><img src="http://cdn.sixrevisions.com/0376-14_storytelling_example_ux.jpg" width="550" height="380" style="max-width: 100%; height: auto;"></p>
    <p>When scrolling down the page, you learn all about the story behind TED. How it was founded based on the idea that small ideas can change the world, if they meet the right people and if they come together.</p>
    <p>TED brings together ideas from all over the world and they are constantly looking for new ideas. By the time you get to the end of the page, you are being invited to join the TED community. End of story.</p>
    <h3>Storytelling Through Videos</h3>
    <p>Almost all videos include some kind of story. Video allows for both motion picture and sound, basically all the technical aspects that make a great platform for an engaging story.</p>
    <p>Did you know that site visitors stay on a web page <a href="http://www.marketingsherpa.com/article/how-to/videos-attract-300-more-traffic" rel="nofollow external" class="bo">100% longer when it has a video on it?</a></p>
    <p>Also, site visitors are <a href="http://www.invodo.com/resources/statistics/" rel="nofollow external" class="bo">85% more likely to purchase a product</a> after watching a product video.</p>
    <p>Those are just some numbers that show you how good of a platform video is for your stories.</p>
    <h4>Examples of Storytelling Through Videos</h4>
    <h5>Wistia</h5>
    <p>The video hosting service <a href="http://wistia.com/" rel="nofollow external" class="bo">Wistia</a> shows us an example of good storytelling through video.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-10_storytelling_example_wistia.jpg" width="550" height="371" style="max-width: 100%; height: auto;"></p>
    <p>They have three videos on their homepage that can all be watched separately depending on which topic you are interested in.</p>
    <p>In every video, different people from the team talk you through each chapter of their story.</p>
    <p>At the end of each video, you are automatically taken to the next video to preserve the continuity of the story.</p>
    <p>Even though there are three videos, they all cover different parts of one story. The story of Wistia, and the team behind it.</p>
    <h5>Droplet</h5>
    <p>The mobile money app <a href="https://dropletpay.com/" rel="nofollow external" class="bo">Droplet</a> also uses video to tell a story.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-11_storytelling_example_dropletapp.jpg" width="550" height="487" style="max-width: 100%; height: auto;"></p>
    <p>The video takes you on a journey through the city of London. It shows you why there is a need for the app and how the app solves an existing problem. They do it through storytelling.</p>
    <p>The people behind Droplet have chosen a cartoon-style video. This allows them to minimize noise and focus on the details. The hand-drawn style makes it very personal and unique.</p>
    <h3>Storytelling Through Audio</h3>
    <p>Auditory storytelling is a very old form of storytelling. Songs, for example, were easy to remember and pass on from generation to generation. </p>
    <p>Even today, most songs tell a story of some sort.</p>
    <p>On your website, you can use audio in many different ways. Just keep in mind that not all people appreciate it, so be thoughtful in execution.</p>
    <h4>Example of Storytelling through Audio</h4>
    <h5> Dumb Ways To Die</h5>
    <p>The website <a href="http://dumbwaystodie.com/" rel="nofollow external" class="bo">Dumb Ways To Die </a>is a public service announcement campaign by Metro Trains in Australia to promote rail safety. The campaign went viral in 2012.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-12_storytelling_example_dumbways.jpg" width="550" height="515" style="max-width: 100%; height: auto;"></p>
    <p>The story is about the many different dumb ways to die, including any accidents that happen on and around train tracks.</p>
    <p>The campaign turns a serious topic into a story people are more likely to engage with, in the hopes that their message becomes better learned and disseminated.</p>
    <p>The story is told in a song and it comes with a fun music video and a very engaging, interactive website.</p>
    <p>This is a great example of how to get people to listen to a message they would otherwise not want to hear about.</p>
    <h3>Storytelling Through Social Media</h3>
    <p>Social media has gained a lot of popularity in the recent years. Why? Because they allow people and companies to connect with each other. Social media enables us to exchange feedback, ideas and content.</p>
    <p>And most of all, social media empowers our users to create their own stories, to share them, to follow others, and to collaborate in building common stories. </p>
    <p>For companies, social media can be a great place to tell stories. This form of storytelling is interactive and the stories evolve around a community. </p>
    <p>Since social media platforms such as Facebook and Instagram are associated with leisure and entertainment, they attract the ideal audience for your stories.</p>
    <h4>Examples of Storytelling Through Social Media</h4>
    <h5>Starbucks Facebook Page</h5>
    <p>There are still a lot of companies that don’t know how to use social media as an effective marketing tool. This does not hold true for <a href="https://www.facebook.com/Starbucks" rel="nofollow external" class="bo">Starbucks</a>.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-15_storytelling_example_starbucks.jpg" width="550" height="270" style="max-width: 100%; height: auto;"></p>
    <p>With 35 million followers, more than 50,000 likes on their Facebook page, and an estimated average of 5,000 comments per post, Starbucks sure knows how to engage with their community.</p>
    <p>How?</p>
    <p>Through storytelling.</p>
    <p>Starbucks has mastered the use of Facebook to create a space for storytelling, not only for themselves, but also for the stories of their customers.</p>
    <h5>Red Bull on Instagram</h5>
    <p>Another popular social media platform  is Instagram.  On this social media site, you need to tell your stories with photos and short videos. </p>
    <p><a href="http://instagram.com/redbull" rel="nofollow external" class="bo">Red Bull</a> does just that.</p>
    <p><img src="http://cdn.sixrevisions.com/0376-16_storytelling_example_redbull.jpg" width="550" height="359" style="max-width: 100%; height: auto;"></p>
    <p>The company is known for their event marketing efforts and they create more content around their product than any other company. Content that is fun, visual, and extremely popular.</p>
    <p><em><strong>Related article:</strong> <a href="../Content/Sabina_Idler_Online_Storytelling/Content%20is%20All%20That%20Matters%20on%20the%20Web" rel="nofollow external" class="bo">Content is All That Matters on the Web</a> discusses Red Bull’s unique content strategy.</em></p>
    <p>On Instagram Red Bull tells their stories with photos and short videos. And fans follow these stories engagingly.</p>
    <h3>Online Storytelling is Powerful</h3>
    <p>The Internet is the most powerful platform for storytelling. It combines different carriers for our stories: text, visuals, interactive animation, video, audio, and social media.</p>
    <p>The Web is also the only medium that can be publically accessed simultaneously by people all over the world. Not only does this allow anyone to share their own stories, it also means that our stories can reach the entire world. </p>
    <h3>Related Content</h3>
    <ul>
    <li><a href="http://sixrevisions.com/content-strategy/importance-web-content-strategy/" rel="nofollow external" class="bo">The Importance of Web Content Strategy</a></li>
    <li><a href="http://sixrevisions.com/content-strategy/viral-content-why-we-share-some-things-and-not-others/" rel="nofollow external" class="bo">Viral Content: Why We Share Some Things and Not Others</a></li>
    <li><a href="http://sixrevisions.com/content-strategy/web-design-process/" rel="nofollow external" class="bo">How to Bake Content Strategy into Your Web Design Process</a></li>
    <li>
    <strong>Related categories:</strong> <a href="http://sixrevisions.com/category/user-experience-ux/" rel="nofollow external" class="bo">User Experience</a> and <a href="http://sixrevisions.com/category/content-strategy/" rel="nofollow external" class="bo">Usability</a>
    </li>
    </ul>
    <h3>About the Author</h3>
    <p><img src="http://cdn.sixrevisions.com/authors/sabina_idler_small.jpg" alt="" width="80" height="80" style="max-width: 100%; height: auto;"><span><strong>Sabina Idler</strong> is UX Specialist at<em> <a href="http://usabilla.com/" rel="nofollow external" class="bo">Usabilla</a></em> and Founder of <a href="http://uxkids.com/" rel="nofollow external" class="bo"><em>UXkids</em></a><em>.</em> Sabina is passionate about improving interactive media for all ages. For more UX insights, check out the <em><a href="http://blog.usabilla.com/" rel="nofollow external" class="bo">Usabilla blog</a></em> and follow her on Twitter<em> <a href="https://twitter.com/SabinaIdler" rel="nofollow external" class="bo">@sabinaidler</a></em> and <a href="https://plus.google.com/u/0/115496882129062393450" rel="nofollow external" class="bo"><em>Google+</em></a><em>.</em></span></p>
    <p>The post <a href="http://sixrevisions.com/user-experience-ux/online-storytelling-methods/" rel="nofollow external" class="bo">Popular Methods for Online Storytelling</a> appeared first on <a href="http://sixrevisions.com" rel="nofollow external" class="bo">Six Revisions</a>.</p>
    </div>
]]>
</Body>
<Summary>The act of storytelling is present in every culture.  Storytelling, when done well, can move people to take action.   The way we tell stories has evolved drastically over time. We constantly find...</Summary>
<Website>http://feedproxy.google.com/~r/SixRevisions/~3/mTdhzN5A3tE/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35024/guest@my.umbc.edu/239149eba25bca54c8065365cfc435b1/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>database</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>sql</Tag>
<Tag>user-experience-ux</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 02 Sep 2013 06:00:32 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35025" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35025">
<Title>Embrace failure</Title>
<Body>
<![CDATA[
    <div class="html-content">In an extract from his book, Why We Fail, Victor Lombardi explains what experience designers can learn from past failures<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Fembrace-failure&amp;t=Embrace+failure" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Fembrace-failure&amp;t=Embrace+failure" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Fembrace-failure&amp;t=Embrace+failure" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Fembrace-failure&amp;t=Embrace+failure" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Fembrace-failure&amp;t=Embrace+failure" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/173608478586/u/49/f/502346/c/32632/s/30b0b4b9/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608478586/u/49/f/502346/c/32632/s/30b0b4b9/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173608478586/u/49/f/502346/c/32632/s/30b0b4b9/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608478586/u/49/f/502346/c/32632/s/30b0b4b9/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173608478586/u/49/f/502346/c/32632/s/30b0b4b9/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608478586/u/49/f/502346/c/32632/s/30b0b4b9/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/173608478586/u/49/f/502346/c/32632/s/30b0b4b9/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608478586/u/49/f/502346/c/32632/s/30b0b4b9/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>In an extract from his book, Why We Fail, Victor Lombardi explains what experience designers can learn from past failures      </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/vyryaIaDWXY/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35025/guest@my.umbc.edu/a3bfce629ec2bd919caa62a3e7e0c390/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 02 Sep 2013 06:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35022" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35022">
<Title>The ultimate guide to flat design</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/08/thumbnail13.jpg" width="200" height="160" style="max-width: 100%; height: auto;">It is easy to say that 2013 has so far been the year of flat design.</p> <p>Even Apple, the driver of the skeuomorphic design trend for many years, is trying some level of flat design when it releases iOS 7 later this year.</p> <p>So are you ready to try it out as well? Not sure how to get started? WebdesignerDepot is here to help with a guide of flat design resources. We’ve put together a giant list of everything flat design, from free UI kits to color palettes to typography options.</p> <p>If you want to test the flat design waters or swim out a little deeper, we have everything you need to get started, from ready-made tools to tutorials for the do-it-yourselfer.</p> <p> </p> <h1>Flat design 101</h1> <p>Flat design is a style that lacks the “tricks” designers often use in order to create a realistic or three-dimensional effect. The style is characterized by an overall minimalistic look, bright but muted colors, bold — often retro — typography and simple user interface elements such as buttons or icons.</p> <p>Flat design techniques avoid embellishments such as bevels, embossing, drop shadows, gradients or artificial textures.</p> <p>The design style is hugely popular for simple websites that only include a few pages and for mobile applications. Flat design has also been criticized for its overall simplicity, use of illustrations (that some label as cartoonish) and a user interface style that can be difficult for some users to understand.</p> <p>Animation is typically avoided in flat design projects and large images are in. In minimal design schemes, designers often give plenty of room to the content, allowing it to tell the story in a simple, direct manner.</p> <p>Several other trends have begun to emerge out of flat design: “almost flat design”, “long shadow design” and a re-emphasis on the always popular minimalist design.</p> <p>“Almost flat design” is based on flat design but may include some degree of minimal effect, such as a simple shadow inside of an element or basic gradient.</p> <p>“Long shadow design” is used almost exclusively for icons and is exemplified by an image within an icon frame that has a tinted area that extends from the image; long shadows typically fall at 45-degree angles and include the same characteristics the rest of the flat design scheme.</p> <p>Flat design has also brought an emphasis back to minimalist design, even for designers not using flat-style techniques. As part of the overall trend, there has been a re-emphasis on white space; color, sharp shapes and lines; and a return to simple and basic typography.</p> <p> </p> <h1>UI kits</h1> <p>User interface kits are a great way to get started with a flat design project.</p> <p>Kits can save you time – important when following a trend – with a pre-designed package of parts. Most UI kits come in the Adobe Photoshop file format (PSD) and are fully editable if you are comfortable with the software.</p> <p>The kits below range from simple, free kits to more comprehensive downloads with licensing options. The number of available flat-style UI kits is growing daily; we’ve complied a list that includes a number of varying styles.</p> <p>When choosing a user interface kit, don’t get too hung up on color or color palette. Most kits include usable colors if you don’t have a palette in mind, but allow you to change the overall color scheme with just a few clicks. Save time by creating usable swatches before opening the kit so that you don’t have to type in manual color values for each change. Also consider using your color palette in the same way as the kit designer used the default swatches, mirroring color choices in tone, saturation and contrast for elements in the kit.</p> <h2>Featherweight UI (free)</h2> <p><a href="http://sarahjustine.com/2013/03/17/featherweight-ui-a-free-vector-based-and-retina-ready-ui-kit-with-bonus-mini-tutorial/" rel="nofollow external" class="bo">Featherweight UI</a> is a simple, retina-ready kit that includes a handful of sharp elements, including menus, a photo scroll, map, simple icons and scroll widgets. While the kit is not incredibly large it has an elegant style and plays up the more retro color theme often associated with flat design.</p> <p><a href="http://sarahjustine.com/2013/03/17/featherweight-ui-a-free-vector-based-and-retina-ready-ui-kit-with-bonus-mini-tutorial/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/featerweight.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Polaris UI kit (free)</h2> <p>Another kit by Designmodo featuring a darker style package. <a href="http://designmodo.com/polaris-free/" rel="nofollow external" class="bo">This kit</a> contains a variety of buttons and panels that mirror the look of the Windows flat user interface. While Polaris contains parts that are designed in the flat style, it also includes some elements in the skeuomorphic style.</p> <p><a href="http://designmodo.com/polaris-free/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/Polaris.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Erste UI kit (free)</h2> <p><a href="http://www.designyourway.net/blog/resources/eerste-flat-user-interface-kit-that-is-free-to-download/" rel="nofollow external" class="bo">This simple UI kit</a> contains a handful of basic elements, such as social login buttons, menus and a media player. The colors are characteristic of flat design, using a palette of primary hues.</p> <p><a href="http://www.designyourway.net/blog/resources/eerste-flat-user-interface-kit-that-is-free-to-download/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/erste.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>FlatUI kit (free)</h2> <p><a href="http://www.webdesignerdepot.com/2013/05/flat-ui-kit-free-download/" rel="nofollow external" class="bo">The kit designed by Freepik.com for WebdesignerDepot</a> contains a large number of elements, from navigation to drop down menus to social sharing tools to e-commerce modules.</p> <p><a href="http://www.webdesignerdepot.com/2013/05/flat-ui-kit-free-download/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flatui-kit.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat UI (free)</h2> <p>This <a href="http://designmodo.github.io/Flat-UI/" rel="nofollow external" class="bo">free kit from Designmodo</a> — one of the first design groups to fully embrace the flat design trend — is a brightly-colored starting part. The kit includes hundreds of elements, including buttons, icons, color swatches and menu items.</p> <p><a href="http://designmodo.github.io/Flat-UI/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/Flat-UI.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat UI kit (free)</h2> <p>Riki Tanone’s kit of <a href="http://dribbble.com/shots/947782-Freebie-PSD-Flat-UI-Kit" rel="nofollow external" class="bo">flat user interface widgets</a> is a fun little pack containing parts that are a little more put together: a chart, media player, task wheel and counter. This is a great starter tool for imagining how to combine simpler UI parts into more complex items.</p> <p><a href="http://dribbble.com/shots/947782-Freebie-PSD-Flat-UI-Kit" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flat-widgets.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Metro UI kit (free)</h2> <p>The <a href="http://www.tempees.com/free-download/metro-ui-kit" rel="nofollow external" class="bo">Metro UI kit</a> is a colorful kit that embodies the concept of flat as reintroduced by the Windows phone. The colors and style are both reminiscent of the phone interface, with lots of colorful blocks and simple typography. The kit includes a calendar, stats, chart, icons, menus and search elements.</p> <p><a href="http://www.tempees.com/free-download/metro-ui-kit" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/metro.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Monotone flat UI kit (free)</h2> <p>While using a variety of bright colors is a popular choice for many designers using flat design, monotone color palettes are equally characteristic of the trend. <a href="http://dribbble.com/shots/1061304-Freebie-PSD-Flat-UI-Kit" rel="nofollow external" class="bo">This UI kit</a> by Sebastiaan Scheer includes a few simple elements and great graduations of color.</p> <p><a href="http://dribbble.com/shots/1061304-Freebie-PSD-Flat-UI-Kit" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/monotone.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Vertical Infinity (free)</h2> <p><a href="http://www.cssauthor.com/vertical-infinity-a-mega-flat-style-ui-kit-for-free-download/" rel="nofollow external" class="bo">Vertical Infinity,</a> by CSS Author, is one of the bigger free kits available and is retina-ready. The manageable kit includes everything from drop down menus to buttons to form elements to widgets and social icons. The style is basic without a lot of extras but would be easy to use in almost any application.</p> <p><a href="http://www.cssauthor.com/vertical-infinity-a-mega-flat-style-ui-kit-for-free-download/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/vertical-infinity.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Lil UI kit ($6)</h2> <p><a href="https://creativemarket.com/lilsquid/5455-Lil-UI-Kit-PSD-Vector-UI-Library" rel="nofollow external" class="bo">This UI kit</a> by Lil Squid Design is almost a steal with so many matched pieces, including 18 categories of elements. The vector kit is customizable and was designed for visual simplicity and consistency.</p> <p><a href="https://creativemarket.com/lilsquid/5455-Lil-UI-Kit-PSD-Vector-UI-Library" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/lil-ui.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat UI kit ($19)</h2> <p>Ideation Pro’s <a href="https://creativemarket.com/ideationpro/7746-Flat-UI-Kit" rel="nofollow external" class="bo">flat UI kit</a> includes a handful of nice simple elements — icons, form fields and buttons — to help get a project going. The elements are perfectly matched, include bright colors and could work great for a simple mobile project.</p> <p><a href="https://creativemarket.com/ideationpro/7746-Flat-UI-Kit" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/ideation.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat UI pro (from $39)</h2> <p><a href="http://designmodo.com/flat/?u=17" rel="nofollow external" class="bo">Flat UI Pro</a> is Designmodo’s comprehensive UI kit featuring the flat style. The kit is made for Twitter Bootstrap and includes full PSD files for customization. The kit is fully responsive; contains a ton of elements, icons and glyphs; color swatches and is retina-display ready.</p> <p><a href="http://designmodo.com/flat/?u=17" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flat-ui-pro.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat UI PSD ($5)</h2> <p>While <a href="https://creativemarket.com/Martz90/7552-Flat-UI-PSD" rel="nofollow external" class="bo">this kit</a> is in the flat style, some elements could be considered “almost flat.” The buttons, for example, include a light shadow behind the text to provide a little more color contrast.</p> <p><a href="https://creativemarket.com/Martz90/7552-Flat-UI-PSD" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flat-ui-psd.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Square UI (from $39)</h2> <p><a href="http://designmodo.com/square/?u=17" rel="nofollow external" class="bo">Square UI</a> is a comprehensive UI kit from Designmodo with a large array of buttons and elements. This kit differs from some of the others because it breaks tradition with the color palette and uses a much darker scheme. The kit contains elements, navigation and hundreds of components. The kit downloads in an editable, layer format for customization and includes light and dark color palettes with pre-built swatch files. The elaborate kit looks less like a kit than many other options out there and is retina-display ready.</p> <p><a href="http://designmodo.com/square/?u=17" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/square.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Flat icons</h1> <p>Flat-style icons are everywhere and you can grab many of these kits for free from a variety of places.</p> <p>Like UI kits, most icon packs are delivered as a PSD download, making the icons easy to customize.</p> <p>Many of the icons are designed in the specification and style for mobile device applications. These icons, though, have other uses as well and could make great website buttons.</p> <p>When choosing a set of icons, look for kits that contain icons in size options the meet your needs. While some kits are drawn as vector shapes, others may come in set sizes that can result in a loss of quality if used too large. </p> <h2>40 social media flat icons (free)</h2> <p>This <a href="http://graphicburger.com/40-social-media-flat-icons/" rel="nofollow external" class="bo">comprehensive social media icon</a> set has almost every popular network and website included in a beautiful icon set that uses both a flat style and long shadow design. Icons are set in a way that make each easy to identify and with a color outline that is sharp and distinct. Each icon is also available in four sizes – 32, 64, 128 and 256 pixels square. While you could customize this kit, it is unlikely you will need to.</p> <p><a href="http://graphicburger.com/40-social-media-flat-icons/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/40-icons.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Freebie PSD — flat icons (free)</h2> <p><a href="http://dribbble.com/shots/996783-Freebie-PSD-Flat-Icons?list=searches" rel="nofollow external" class="bo">This simple download</a> includes complex icons in a flat style. These icons include a little more detailing and styling than most flat elements. This kit is available for PC download only.</p> <p><a href="http://dribbble.com/shots/996783-Freebie-PSD-Flat-Icons?list=searches" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/freebie1.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>12 flat SEO icons (free)</h2> <p>This set of <a href="http://www.webdesignerdepot.com/2013/07/free-download-12-flat-seo-icons/" rel="nofollow external" class="bo">social media icons</a> is one of the brightest out there. The kit designed by Vladislav Karpov for WebdesignerDepot contains 12 icons, that showcases everything from SEO performance to copywriting to web analytics that use both the flat style and contain some long shadows. This kit would work great for a portfolio or agency site design.</p> <p><a href="http://www.webdesignerdepot.com/2013/07/free-download-12-flat-seo-icons/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/Flat-Seo.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Free flat icon set (free)</h2> <p>While many flat design schemes rely on high-color visuals, some designers are opting to keep icons more simple so they don’t compete with other elements and parts of the overall design. <a href="http://dribbble.com/shots/1104784-Free-Flat-Icon-Set" rel="nofollow external" class="bo">This small icon set </a>(9 icons) features low color, low contrast elements for ease of application.</p> <p><a href="http://dribbble.com/shots/1104784-Free-Flat-Icon-Set" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/free-gray.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat file icons (free)</h2> <p>Every designer who builds a site that includes downloadable files needs a set of file icons. <a href="http://www.premiumpixels.com/freebies/flat-file-icons-psd/" rel="nofollow external" class="bo">This quad of icons</a> represents the most popular file options – upload, download, settings and charts. Or you can change out the center icons for your custom options.</p> <p><a href="http://www.premiumpixels.com/freebies/flat-file-icons-psd/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flat-file.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat icons freebie (free)</h2> <p>Flat icons with rounded edges are some of the lesser used icons. <a href="http://dribbble.com/shots/1076502-Flat-Icons-Freebie" rel="nofollow external" class="bo">This set</a> does just that in a way the maintains the integrity of flat design. The kit includes nine icons for common elements, such as weather, mail and a calendar.</p> <p><a href="http://dribbble.com/shots/1076502-Flat-Icons-Freebie" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/Flat-Seevi.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat social media icons (free)</h2> <p>No site is complete these days without a set of social media links. <a href="http://designmodo.com/flat-social-icons/" rel="nofollow external" class="bo">Designmodo’s kit</a> contains 35 social media buttons for a variety of popular networks. The color scheme is bright and icon colors match the networks they associate with, creating an immediate visual cue.</p> <p><a href="http://designmodo.com/flat-social-icons/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flat-social.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>PSD flat social icons (free)</h2> <p><a href="http://www.pixeden.com/social-icons/psd-flat-social-icons" rel="nofollow external" class="bo">This set of 16 social media icons</a> uses both the flat style and long shadow design techniques. This kit also breaks outside the idea of square icons, with a mix of circle and square shapes with slightly rounded corners.</p> <p><a href="http://www.pixeden.com/social-icons/psd-flat-social-icons" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/social-pixden.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>IconShock flat icons (from $19)</h2> <p>This might be <a href="http://www.iconshock.com/icon_sets/flat-icons/" rel="nofollow external" class="bo">the largest set of flat icons</a> out there. With 3,600 icons in three size options, this kit has an icon for almost everything. It includes basic elements, file types, shapes, and common items. What it is missing are popular social media icons. It’s also free for personal use.</p> <p><a href="http://www.iconshock.com/icon_sets/flat-icons/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/iconshock.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>FlatIcons (from $30)</h2> <p>With various options that include multiple file formats, <a href="https://flaticons.co/" rel="nofollow external" class="bo">FlatIcons</a> is one of the simplest and most comprehensive kits on the market. Every icon is built to customize in shape, size, and scale. Kits are built so that every icon matches perfectly every time, and comes with a great built-in search function so you can quickly find the icon you need. Files are distributed as both copiable CSS/unicode values or in PSD format.</p> <p><a href="https://flaticons.co/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flaticons.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Other flat elements</h1> <p>Sometimes you find the need for elements that aren’t part of any other kit. The flat style is being used for almost everything these days, including these useful tools.</p> <h2>Apple product templates (free)</h2> <p>Getting ready to unveil a new design and want to show it off inside of a device? The <a href="http://medialoot.com/item/minimal-apple-product-templates/" rel="nofollow external" class="bo">Apple template from MediaLoot</a> is designed in the flat style, and is usable in a number of ways.</p> <p><a href="http://medialoot.com/item/minimal-apple-product-templates/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/apple.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>E-comerce flat web elements (free)</h2> <p>Although flat design has not been embraced by a large number of e-commerce sites simple sales sites could benefit from the simple buttons in <a href="http://dribbble.com/shots/913555-Flat-Web-Elements" rel="nofollow external" class="bo">this kit.</a> From a chat module to cart and checkout buttons, this kit has enough basic elements to get started or to build on for an online retailer.</p> <p><a href="http://dribbble.com/shots/913555-Flat-Web-Elements" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/ecommerce.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat credit cards (free)</h2> <p>It is important to pay attention to every detail when picking a design scheme, even something as small as these <a href="http://dribbble.com/shots/952897-Freebie-Flat-Credit-Cards" rel="nofollow external" class="bo">credit card icons.</a> Maintaining consistency is key and these simple, credit cards are recognizable and fit into any flat design.</p> <p><a href="http://dribbble.com/shots/952897-Freebie-Flat-Credit-Cards" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/credit-cards.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Friends list UI (free)</h2> <p>Create a neat and organized list with <a href="http://dribbble.com/shots/1092374-Friends-list-UI-Free-PSD" rel="nofollow external" class="bo">this UI PSD,</a> designed for the iPhone interface. The coral color is quite common in flat design as is the simple sans-serif typography and icons.</p> <p><a href="http://dribbble.com/shots/1092374-Friends-list-UI-Free-PSD" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/freinds.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Radial graph (free)</h2> <p>Charts and graphs can be some of the more complicated items to build from scratch. This <a href="http://dribbble.com/shots/1078041-FREEBIE-Flat-Radial-Graph-PSD" rel="nofollow external" class="bo">radial graph PSD</a> is an excellent getting-started tool. The colors and sizes are customizable and easy to change, thanks to this simple vector design.</p> <p><a href="http://dribbble.com/shots/1078041-FREEBIE-Flat-Radial-Graph-PSD" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/radial-graph.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Sign-up form (free)</h2> <p>Flat design is popular for website design touting something that is coming soon, from a full site to a mobile application. In both instances, this makes the use of a <a href="http://www.cssflow.com/snippets/sign-up-form" rel="nofollow external" class="bo">sign up form</a> popular, making it easy to notify users when the site or application goes live.</p> <p><a href="http://www.cssflow.com/snippets/sign-up-form" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/signup.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat browser frames ($5)</h2> <p>Create a custom browser frame for screenshots in the flat style. (This is becoming commonplace for designers and sites that want to showcase upcoming applications.) <a href="https://creativemarket.com/surjithctly/6879-Flat-Browser-frames-PSD-Collection" rel="nofollow external" class="bo">This kit</a> contains 10 different browser frame styles in vector format that can be used as-is or customized for a completely different look.</p> <p><a href="https://creativemarket.com/surjithctly/6879-Flat-Browser-frames-PSD-Collection" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/browser-frames.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat design flyer template ($6)</h2> <p>Most websites include some sort of companion pieces, from business cards to posters or fliers. The <a href="https://creativemarket.com/ultimatebundles/8566-Flat-Design-Flyer-Template" rel="nofollow external" class="bo">Flat Design Flyer Template</a> helps you convert your web design outline into a usable print piece in the same flat style. The flier comes in a print-ready template, complete with CMYK colors and a quarter-inch bleed.</p> <p><a href="https://creativemarket.com/ultimatebundles/8566-Flat-Design-Flyer-Template" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flat-flyer.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flavor business card ($6)</h2> <p>Match business cards to the idea behind the same flat design scheme from your website. The <a href="https://creativemarket.com/RafaelOliveira/5945-Flavor-Business-Card" rel="nofollow external" class="bo">Flavor business card template</a> comes in a standard size and is CMYK print-ready. Colors and fonts can be matched to your site design for a perfect piece.</p> <p><a href="https://creativemarket.com/RafaelOliveira/5945-Flavor-Business-Card" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flavor-card.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Pricing tables ($4)</h2> <p>Even if the main purpose of your site is not sales, but you do offer products or subscriptions, pricing tables may be important to have. This <a href="https://creativemarket.com/artlabs/6966-Pricing-tables-Bootstrap-responsive" rel="nofollow external" class="bo">set of monotone tables</a> complements a variety of other flat design elements and is an item that a lot of UI kits do not include. This particular kit is built for Twitter Bootstrap.</p> <p><a href="https://creativemarket.com/artlabs/6966-Pricing-tables-Bootstrap-responsive" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/pricing-tables.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>WordPress Themes</h1> <p>Creating a great flat design website does not have to happen from scratch. WordPress theme designers immediately jumped on the trend and there are quite a few great paid and free themes available for download.</p> <p>What’s nice about using a pre-packaged theme is that you can get your design and site up and running in almost no time. Quality themes will have a clean, clear consistent look. Opt for buying (or downloading) a theme that includes everything you need right “out of the box.” Think about whether your site should be responsive, needs e-commerce features or forms, if you want something that offers customization, retina-ready graphics, multiple- or single-page design and icon packs or inclusions. Make a list of wants and needs first to make finding the right theme that much easier.</p> <p>Typically, the best options, support and flexibility come with a premium (or paid) WordPress theme. These themes often look more professional, have cleaner code and offer support that free versions often lack. However free themes can be a fun and simple way to start building a site. While these theme options can be limiting and offer only a small selection of the options paid themes include, they can be useful.</p> <h2>Duena (free)</h2> <p>Made for blogs, <a href="http://wordpress.org/themes/duena" rel="nofollow external" class="bo">this theme</a> is simple and uses a bright, creamy color palette.</p> <p><a href="http://wordpress.org/themes/duena" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/duena.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Fizz (free)</h2> <p>This <a href="http://www.s5themes.com/theme/fizz/" rel="nofollow external" class="bo">responsive flat-style theme</a> uses clean lines and bright colors on alternating dark and light backgrounds. Some of the background images are a bit textured.</p> <p><a href="http://www.s5themes.com/theme/fizz/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/fizz.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Current (free)</h2> <p><a href="http://wordpress.org/themes/current" rel="nofollow external" class="bo">Current</a> is perfectly flat in every aspect of the design and is designed as a gateway page for a new product.</p> <p><a href="http://wordpress.org/themes/current" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/current.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Attitude (free)</h2> <p>This <a href="http://www.themehorse.com/themes/attitude/" rel="nofollow external" class="bo">simple and professional theme</a> in the almost flat style includes more options than many other free themes.</p> <p><a href="http://www.themehorse.com/themes/attitude/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/attitude.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Bloq (free)</h2> <p><a href="http://www.1001freewpthemes.com/bloq-wp-theme/" rel="nofollow external" class="bo">Bloq</a> uses flat design and flat colors beautifully (and some of the icons even have long shadows).</p> <p><a href="http://www.1001freewpthemes.com/bloq-wp-theme/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/bloq.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Frontier (free)</h2> <p><a href="http://www.fabthemes.com/frontier/" rel="nofollow external" class="bo">This flat theme</a> focuses on minimalism and includes a lot of add-ons such as banner ads and custom menus.</p> <p><a href="http://www.fabthemes.com/frontier/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/frontier.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>MetroBlog (free)</h2> <p><a href="http://smthemes.com/metroblog/" rel="nofollow external" class="bo">MetroBlog</a> uses bright colors and tiling — characteristics of flat design — but also includes gradient color boxes, which make this blog theme almost flat.</p> <p><a href="http://smthemes.com/metroblog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/metroblog.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Viper (free)</h2> <p>One of the better free e-commerce options available <a href="http://www.fabthemes.com/viper/" rel="nofollow external" class="bo">Viper</a> has big, bold boxes for text and clear navigation.</p> <p><a href="http://www.fabthemes.com/viper/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/viper.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>SimpleCorp (free)</h2> <p>While <a href="http://www.s5themes.com/theme/simplecorp/" rel="nofollow external" class="bo">this theme</a> has some characteristics of flat design, the style is more almost flat (note the icons in particular).</p> <p><a href="http://www.s5themes.com/theme/simplecorp/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/simplecorp.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>BirdFlat (free)</h2> <p>A <a href="http://wordpress.org/themes/birdflat" rel="nofollow external" class="bo">flexible blog theme</a> with options for color and header styles.</p> <p><a href="http://wordpress.org/themes/birdflat" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/bird.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>SympalPress (free)</h2> <p><a href="http://www.thepremiumthemes.com/sympalpress.lite.wordpress.theme.html" rel="nofollow external" class="bo">This free theme</a> is anything but simple with nice shapes, almost flat icons and vibrant color and typography.</p> <p><a href="http://www.thepremiumthemes.com/sympalpress.lite.wordpress.theme.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/sympal.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Tetris (free)</h2> <p><a href="http://www.wpexplorer.com/tetris-wordpress-theme/" rel="nofollow external" class="bo">Tetris</a> uses simple block-styles and cards for a simple site design. The look is great for sites with great images or visuals.</p> <p><a href="http://www.wpexplorer.com/tetris-wordpress-theme/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/tetris.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Argo ($40)</h2> <p><a href="http://themeforest.net/item/argo-modern-onepage-metro-ui-wordpress-theme/4589714" rel="nofollow external" class="bo">Argo</a> uses tiling and a simple structure that can work for both portfolios or business sites. The WordPress theme features clean lines and simple menu items featuring flat components. It comes in three color options — green, orange and blue — featuring a monotone palette.</p> <p><a href="http://themeforest.net/item/argo-modern-onepage-metro-ui-wordpress-theme/4589714" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/argo.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Business Essentials ($45)</h2> <p><a href="http://themeforest.net/item/business-essentials-premium-wordpress-theme/4375646" rel="nofollow external" class="bo">This simple, yet classic theme</a> is perfectly flat and works great for a business that is on top of trends. The modern style is simple and comes with all the essentials for a business site, including company profile pages, social icons and printable and PDF download functionality.</p> <p><a href="http://themeforest.net/item/business-essentials-premium-wordpress-theme/4375646" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/business-essentials.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Illustrate ($45)</h2> <p><a href="http://themeforest.net/item/illustrate-responsive-portfolio-blog-theme/5069761?ref=BlazRobar&amp;ref=BlazRobar&amp;clickthrough_id=149057948&amp;redirect_back=true" rel="nofollow external" class="bo">This theme</a> is designed for portfolios and display. The theme uses sharp boxes and bright color representative of flat design for a modern look. One of the cool features of this theme is custom color palette generation based on portfolio options. The theme is fully responsive and includes a long list of available options.</p> <p><a href="http://themeforest.net/item/illustrate-responsive-portfolio-blog-theme/5069761?ref=BlazRobar&amp;ref=BlazRobar&amp;clickthrough_id=149057948&amp;redirect_back=true" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/illustrate.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Modern Metro ($40)</h2> <p>For sites running on WordPress, <a href="http://themeforest.net/item/modern-metro-responsive-wordpress-theme/4203726" rel="nofollow external" class="bo">Modern Metro</a> is the theme that matches Metro UI. The layout features live tiles which can be moved and customized. The theme is responsive and comes with the ability to customize the color palette, a variety of matching charts and a set of 1,368 flat icons.</p> <p><a href="http://themeforest.net/item/modern-metro-responsive-wordpress-theme/4203726" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/modern-metro.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Shift ($35)</h2> <p><a href="http://themeforest.net/item/shift-a-tumblog-style-wordpress-blogging-theme/4301599" rel="nofollow external" class="bo">Shift</a> is a modern, high-color theme with a ton of customization tools. Colors, typefaces and widgets are customizable (PSD formats are included). The flat styled design is sharp with pixel-perfect styling and comes retina-ready and is responsive.</p> <p><a href="http://themeforest.net/item/shift-a-tumblog-style-wordpress-blogging-theme/4301599" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/shift.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Salmon &amp; Cream ($75)</h2> <p><a href="https://creativemarket.com/goodbyeagency/6489-Salmon-Cream-%E2%80%93-WP-Portfolio-Theme" rel="nofollow external" class="bo">This theme</a> is one of the sharpest out there. It’s highly customizable and the responsive design is retina-ready. The built-in color palettes are wonderfully flat, using the title salmon, blue or your choice of hue.</p> <p><a href="https://creativemarket.com/goodbyeagency/6489-Salmon-Cream-%E2%80%93-WP-Portfolio-Theme" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/salmon.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Candy ($35)</h2> <p><a href="http://themeforest.net/item/candy-onepage-flat-responsive-wordpress-theme/5287938" rel="nofollow external" class="bo">This fully-responsive theme</a> is designed for portfolio-style sites and uses high color. The purely flat theme also uses a distinct font palette with a great look and feel in the default settings.</p> <p><a href="http://themeforest.net/item/candy-onepage-flat-responsive-wordpress-theme/5287938" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/Candy.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Alfie ($40)</h2> <p><a href="http://themeforest.net/item/alfie-the-responsive-bootstrap-wordpress-theme/5017252" rel="nofollow external" class="bo">This theme</a> packs a lot of punch with a variety of layout options, background colors and a set of 361 retina-ready icons. In addition, the theme includes an easy shortcode generator and is built using Bootstrap.</p> <p><a href="http://themeforest.net/item/alfie-the-responsive-bootstrap-wordpress-theme/5017252" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/alfie.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Biggie ($7)</h2> <p>Color makes <a href="https://creativemarket.com/kejnav/8067-Biggie-Flat-WordPress-Theme" rel="nofollow external" class="bo">this flat theme</a> stand out. It’s simple, modern, responsive and includes multiple widgets. The monotone scheme of flat colors is a nice touch and it’s one of a few purely single color themes out there.</p> <p><a href="https://creativemarket.com/kejnav/8067-Biggie-Flat-WordPress-Theme" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/biggie.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Bonbon ($49)</h2> <p>Part of what appeals to some people about the flat style is the use of creative illustrations and icons. That’s where <a href="https://creativemarket.com/ThemeJug/9140-Bonbon-WordPress-Theme" rel="nofollow external" class="bo">Bonbon</a> comes in. It uses high color and a fun style in a retina-ready responsive theme. It even comes with a pack of great icon illustrations that can be customized.</p> <p><a href="https://creativemarket.com/ThemeJug/9140-Bonbon-WordPress-Theme" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/bonbon.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat ($39)</h2> <p><a href="http://themify.me/themes/flat" rel="nofollow external" class="bo">Flat</a> looks like what you would expect of a basic flat design minus one feature. The high color palette uses muted tones rather than some of the bright hues that are characteristic of flat design.</p> <p><a href="http://themify.me/themes/flat" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/flat.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>News ($45)</h2> <p>Frequent posters will like <a href="http://themeforest.net/item/news/5006704" rel="nofollow external" class="bo">news</a>, a simple theme that uses photo and text cards to index lots of content. The style is simple and flat with bright colors and simple icons.</p> <p><a href="http://themeforest.net/item/news/5006704" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/news.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Coffee &amp; Cream ($40)</h2> <p><a href="http://themeforest.net/item/coffee-cream-multipurpose-wordpress-theme/4915282" rel="nofollow external" class="bo">This single-page theme</a> includes a number of options and two navigation options. It’s fully responsive and uses the flat design trend perfectly.</p> <p><a href="http://themeforest.net/item/coffee-cream-multipurpose-wordpress-theme/4915282" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/coffee.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat Admin ($18)</h2> <p>There are plenty of forms, tables, custom pages and element integration in <a href="http://themeforest.net/item/flat-responsive-admin-template/4354008" rel="nofollow external" class="bo">this flat theme</a> designed for businesses. The responsive design is fully customizable and the download comes with free feature updates and support.</p> <p><a href="http://themeforest.net/item/flat-responsive-admin-template/4354008" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/flat-admin.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Sketch ($40)</h2> <p>A high-powered <a href="http://themeforest.net/item/sketch-wordpress-theme/2974212" rel="nofollow external" class="bo">single-page theme</a> that uses multiple and different screens that encourage scrolling. The theme is customizable and includes social media functionality and a contact form. This theme has many flat characteristics, but would be classified as almost flat.</p> <p><a href="http://themeforest.net/item/sketch-wordpress-theme/2974212" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/sketch.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Showy ($35)</h2> <p><a href="http://themeforest.net/item/showy-bold-flat-portfolio/4718241" rel="nofollow external" class="bo">This theme</a> is almost the opposite of its name, with a simple and modern interface.</p> <p><a href="http://themeforest.net/item/showy-bold-flat-portfolio/4718241" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/showy.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Evolux ($45)</h2> <p>With a variety of post formats, <a href="http://themeforest.net/item/evolux-responsive-multipurpose-wordpress-theme/5299479" rel="nofollow external" class="bo">this theme</a> is a great tool for showcasing a product or design. The theme features large image frames, simple and bold text.</p> <p><a href="http://themeforest.net/item/evolux-responsive-multipurpose-wordpress-theme/5299479" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/evolux.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Jobify ($55)</h2> <p><a href="http://themeforest.net/item/jobify-job-board-wordpress-theme/5247604" rel="nofollow external" class="bo">Jobify</a> is a theme made just for creating jobs, using the trendy look of flat design. The powerful, responsive theme uses simple typography, color and grids and integrates with other jobs toolkits.</p> <p><a href="http://themeforest.net/item/jobify-job-board-wordpress-theme/5247604" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/jobify.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>MetroFolio ($40)</h2> <p><a href="http://themeforest.net/item/metrofolio/5027539" rel="nofollow external" class="bo">MetroFolio</a> uses the metro, card-style layout that has become linked to flat design. The simple theme has an easy-to-use interface, is customizable and is made for portfolios.</p> <p><a href="http://themeforest.net/item/metrofolio/5027539" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/metrofolio.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>FlatPack ($55)</h2> <p><a href="http://themeforest.net/item/flatpack-multipurpose-business-wordpress-theme/4624428" rel="nofollow external" class="bo">FlatPack</a> includes multiple templates and options for businesses wanting to consider a site designed in the flat style.</p> <p><a href="http://themeforest.net/item/flatpack-multipurpose-business-wordpress-theme/4624428" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/flatpack.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Metrolium ($45)</h2> <p><a href="http://themeforest.net/item/metrolium-responsive-multipurpose-wp-theme/5018371" rel="nofollow external" class="bo">This theme</a> does a nice job of using color blocks in the flat and almost flat style. It has plenty of options and the real-time preview is nice.</p> <p><a href="http://themeforest.net/item/metrolium-responsive-multipurpose-wp-theme/5018371" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/metrolium.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat Portfolio ($35)</h2> <p>What’s great about <a href="http://themeforest.net/item/flat-responsive-portfolio-theme/4895032" rel="nofollow external" class="bo">Flat Portfolio</a> is that it is designed to display your portfolio in a retina-ready environment. The customizable theme is also responsive and includes unlimited colors and use of Google Fonts.</p> <p><a href="http://themeforest.net/item/flat-responsive-portfolio-theme/4895032" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/Flat-Portfolio.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Hypertext ($40)</h2> <p>This is the theme for designers or developers who want extra control because it has plenty of advanced admin options with HTML5, CSS3 and is fully responsive. <a href="http://themeforest.net/item/hypertext-flat-portfolio-wordpress-theme/4981186" rel="nofollow external" class="bo">Hypertext</a> is also fully customizable in terms of color, page type and language.</p> <p><a href="http://themeforest.net/item/hypertext-flat-portfolio-wordpress-theme/4981186" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/hypertext.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Fuse ($45)</h2> <p>Because <a href="http://themeforest.net/item/fuse-responsive-portfolio-blog-wordpress-theme/5136837" rel="nofollow external" class="bo">Fuse</a> is designed with creative professionals in mind, it is slick and focuses on images, while using simple and beautiful flat-styling details.</p> <p><a href="http://themeforest.net/item/fuse-responsive-portfolio-blog-wordpress-theme/5136837" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/fuse.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Mineral ($45)</h2> <p>The color cast look for images that some sites are using with flat design schemes is part of what you will find with <a href="http://themeforest.net/item/mineral-responsive-multipurpose-wordpress-theme/5221751" rel="nofollow external" class="bo">Mineral</a>. The theme includes a flexible AJAX gallery, responsive design and lots of skins.</p> <p><a href="http://themeforest.net/item/mineral-responsive-multipurpose-wordpress-theme/5221751" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/mineral.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Ink ($49)</h2> <p><a href="http://themetrust.com/themes/ink" rel="nofollow external" class="bo">Ink</a> combines great use of image frames with the colors and style of flat design. Hover animation works nicely and the theme allows you to group images as a slideshow.</p> <p><a href="http://themetrust.com/themes/ink" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/ink.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Amada ($40)</h2> <p><a href="http://themeforest.net/item/amada-flat-and-fresh-wordpress-theme/5014988" rel="nofollow external" class="bo">Amada</a> is a theme that embodies the minimalistic ideals of flat design with simple colors and lines. The theme also uses simple typography with clean lines. It is responsive and retina-ready and has exceptional scrolling effects. </p> <p><a href="http://themeforest.net/item/amada-flat-and-fresh-wordpress-theme/5014988" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/amada.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Glider ($45)</h2> <p>If icons are your thing, <a href="http://themeforest.net/item/glider-clean-powerful-flat-stylish-theme/4883460" rel="nofollow external" class="bo">Glider</a> is the theme for you. The pack comes with 960 vector icons, is retina-ready and supports a blog. The theme supports multiple languages as well.</p> <p><a href="http://themeforest.net/item/glider-clean-powerful-flat-stylish-theme/4883460" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/glider.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Hexagonal ($40)</h2> <p>This <a href="http://themeforest.net/item/hexagonal-clean-multipurpose-responsive-wp-theme/5043705" rel="nofollow external" class="bo">almost flat theme</a> is the backbone for a great minimalistic site and has a very professional look and feel. The design is responsive and include multiple layout options, including blogs.</p> <p><a href="http://themeforest.net/item/hexagonal-clean-multipurpose-responsive-wp-theme/5043705" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/hexagonal.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Emerald ($40)</h2> <p>If you are looking to tiptoe into flat design and like parallax scrolling, <a href="http://themeforest.net/item/emerald-responsive-onepage-wordpress-theme/4934333" rel="nofollow external" class="bo">Emerald</a> is for you. The almost flat theme is simple and includes impressive scroll effects and an unlimited color palette.</p> <p><a href="http://themeforest.net/item/emerald-responsive-onepage-wordpress-theme/4934333" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/emerald.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Kumaon ($40)</h2> <p><a href="http://themeforest.net/item/kumaon-clean-multipurpose-wordpress-theme/4948220" rel="nofollow external" class="bo">Kumaon</a> is a theme built for business with tools for great testimonials and calls to action. The theme also includes 300 flat icons and multiple forms.</p> <p><a href="http://themeforest.net/item/kumaon-clean-multipurpose-wordpress-theme/4948220" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/kumaon.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Anubis ($40)</h2> <p>For a simple, flat theme, <a href="http://themeforest.net/item/anubis-responsive-portfolio-blog-theme/4764383" rel="nofollow external" class="bo">Anubis</a> is packed with features and includes spectacular typography and color right out of the box. The theme is responsive, includes a variety of options and customization and multiple page templates.</p> <p><a href="http://themeforest.net/item/anubis-responsive-portfolio-blog-theme/4764383" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/anubis.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Red Star ($45)</h2> <p>This is one of the few themes that allows you to turn on/off responsiveness. <a href="http://themeforest.net/item/redstar-a-creative-wordpress-theme/4738392" rel="nofollow external" class="bo">The theme</a> focuses on clean, simple typography and includes nice template pages.</p> <p><a href="http://themeforest.net/item/redstar-a-creative-wordpress-theme/4738392" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/redstar.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Forest ($40)</h2> <p><a href="http://themeforest.net/item/forest-a-flat-and-bold-portfolio-wordpress-theme/5121655" rel="nofollow external" class="bo">Forest</a> looks great and has solid code to back it up. The theme works with widget-style boxes making moving items easy.</p> <p><a href="http://themeforest.net/item/forest-a-flat-and-bold-portfolio-wordpress-theme/5121655" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/forest.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Panes ($40)</h2> <p><a href="http://themeforest.net/item/panes-wordpress-on-one-page/5026910" rel="nofollow external" class="bo">Panes</a>, by default, uses two very popular flat design colors – teal and bright purple. The one-page design is setup for plug and play, includes Google maps integration and allows for custom colors and fonts. The card-style scroll effect is pretty nifty, too.</p> <p><a href="http://themeforest.net/item/panes-wordpress-on-one-page/5026910" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/panes.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Nova ($45)</h2> <p><a href="http://themeforest.net/item/nova-flat-clean-responsive-theme/5186612" rel="nofollow external" class="bo">Nova</a> is a great example of how to use novelty typefaces in flat design. All of the elements in this theme are created using bright colors, simple lines and a minimalistic backbone. The retina-ready theme is Bootsrap based and has a variety of customization options – with each of the primary colors pulled straight from a flat design basics palette.</p> <p><a href="http://themeforest.net/item/nova-flat-clean-responsive-theme/5186612" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/nova.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Red Sky ($40)</h2> <p><a href="http://themeforest.net/item/red-sky-one-page-multipurpose-theme/4916191" rel="nofollow external" class="bo">Red Sky</a> is one of those themes that does not look like a theme. The highly visual layout is responsive and works with high color and large images. The one-page theme comes in three styles; all are based in flat design.</p> <p><a href="http://themeforest.net/item/red-sky-one-page-multipurpose-theme/4916191" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/red-sky.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Lambo ($45)</h2> <p>As a photography theme, where you most see hints of flat design in <a href="http://themeforest.net/item/lambo-premium-photography-theme/4802179" rel="nofollow external" class="bo">Lambo</a> is in typography and accent color choices. Simple font choices with bold colors emphasize the flat feeling. With a textured background though, the overall concept is almost flat.</p> <p><a href="http://themeforest.net/item/lambo-premium-photography-theme/4802179" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/lambo.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Righter ($2)</h2> <p><a href="https://creativemarket.com/badelt/7896-Righter-A-Simple-WordPress-Theme" rel="nofollow external" class="bo">This theme</a> is designed for blogging and writing. The super-simple theme has an adaptive layout, clean, minimalist feel and features lean code. It does not include any real bells and whistles.</p> <p><a href="https://creativemarket.com/badelt/7896-Righter-A-Simple-WordPress-Theme" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/righter.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>DCJune ($29)</h2> <p>This <a href="https://creativemarket.com/DIzainPress/9392-DPJuly-Responsive-WordPress-Theme" rel="nofollow external" class="bo">grid-style theme</a> uses great blocks of color and open space to showcase images. The theme is super clean, responsive and includes multiple page templates.</p> <p><a href="https://creativemarket.com/DIzainPress/9392-DPJuly-Responsive-WordPress-Theme" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/dcjuly.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>FlatCo ($45)</h2> <p>The <a href="http://themeforest.net/item/flatco-multipurpose-responsive-wordpress-theme/5222241?WT.ac=search_item&amp;WT.seg_1=search_item&amp;WT.z_author=themewaves" rel="nofollow external" class="bo">FlatCo theme</a> is one of the most packed when it comes to post format and type. The theme also includes more than 300 flat-styled icons and multiple chart and graph elements, making this a complete kit for a variety of projects.</p> <p><a href="http://themeforest.net/item/flatco-multipurpose-responsive-wordpress-theme/5222241?WT.ac=search_item&amp;WT.seg_1=search_item&amp;WT.z_author=themewaves" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/flatco.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Renova ($40)</h2> <p><a href="http://themeforest.net/item/renova-wordpress-one-page-responsive-portfolio-/5163774" rel="nofollow external" class="bo">This one-page theme</a> is simple and beautiful in the true nature of the flat style. Icons and shapes are basic and can be color customized. The theme include simple animations that add a more almost flat feel on hover actions.</p> <p><a href="http://themeforest.net/item/renova-wordpress-one-page-responsive-portfolio-/5163774" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/renova.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Octavus ($40)</h2> <p><a href="http://themeforest.net/item/octavus-responsive-portfolio-wp-theme/4739734" rel="nofollow external" class="bo">Octavus</a> uses flat design in a way that looks and feels trendy without being “too trendy.” The mix of images and colored blocks combine for an easy user experience in this responsive and retina-ready theme.</p> <p><a href="http://themeforest.net/item/octavus-responsive-portfolio-wp-theme/4739734" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/octavus.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <h1>Templates</h1> <p>Flat design templates are beginning to hit the design market as well, even the most inexperienced web designers can put together a simple site using the trend.</p> <h2>Hosting template (free)</h2> <p><a href="http://www.blazrobar.com/2013/free-psd-website-templates/free-hosting-web-design-free-psd/" rel="nofollow external" class="bo">This template</a> will require some work on your part, but it includes the framework for a basic website design in the flat style. It uses on-trend elements and colors and comes as a downloadable PSD, so you will need some backend experience to convert this design to a live site.</p> <p><a href="http://www.blazrobar.com/2013/free-psd-website-templates/free-hosting-web-design-free-psd/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/hosting.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>iPhone flat design UI template (free)</h2> <p>With a variety of simple iPhone templates using a flat design scheme for app design, this site delivers five styles of downloadables: logins, user profiles, activity feed, settings and sidebar design. The <a href="http://www.appdesignvault.com/iphone-flat-ui-design-patterns/" rel="nofollow external" class="bo">downloadable templates</a> come with everything you need to get started and allow for full customization of each design.</p> <p><a href="http://www.appdesignvault.com/iphone-flat-ui-design-patterns/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/iphone.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Delta flat mobile template ($8)</h2> <p>While many designers are opting for responsive sites, <a href="http://themeforest.net/item/delta-flat-mobile-html5-css3-retina/5216991" rel="nofollow external" class="bo">Delta</a> is a mobile-only template in the flat style. It includes many of the add-ons of bigger templates in for the small screen. The flat style used is super-simple and uses a monotone color palette.</p> <p><a href="http://themeforest.net/item/delta-flat-mobile-html5-css3-retina/5216991" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/delta.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flappster flat landing page template ($20)</h2> <p><a href="https://creativemarket.com/artlabs/9003-FLAPPSTER-Bootstrap-flat-landing" rel="nofollow external" class="bo">This landing page design</a> is made for promoting an upcoming site or application. Based in Twitter Bootstrap, the landing page template uses a parallax panel scrolling and a bright flat theme with plenty of call to action buttons. The template comes with a variety of flat buttons and icons, which are all fully customizable in the associated PSD files. The template also uses a set of flat illustrations which are included.</p> <p><a href="https://creativemarket.com/artlabs/9003-FLAPPSTER-Bootstrap-flat-landing" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flappster.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>iLevel Bootstrap template ($15)</h2> <p><a href="http://themeforest.net/item/ilevel-responsive-flat-design-bootstrap-template/5159974" rel="nofollow external" class="bo">This template</a> for a responsive website features flat design and long shadows for a super-trendy theme. The framework is based on Twitter Bootstrap and comes with 30 pages and four available color palettes. The template also includes a handful of flat icons, illustrations and media stream plugins.</p> <p><a href="http://themeforest.net/item/ilevel-responsive-flat-design-bootstrap-template/5159974" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/ilevel.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>iOS7 app icon template ($4)</h2> <p>Any designer or developer with an app for sale in the Apple iTunes store is probably aware to the impending Apple iOS 7 design change. <a href="https://creativemarket.com/PictoFoundry/8762-iOS-7-App-Icon-Template" rel="nofollow external" class="bo">This icon kit</a> can help you create a quick icon using the new style, which can be considered almost flat. Icons are retina-ready and the pack includes icon formats for iTunes, iPad, iPhone, Spotlight and Settings, plus a uniform icon grid.</p> <p><a href="https://creativemarket.com/PictoFoundry/8762-iOS-7-App-Icon-Template" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/ios7.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Color schemes</h1> <p>Color is an important part of any flat design project. Color is often used in one of three distinct ways when it comes to flat design: bold and bright, as a monotone scheme or in multicolored panels. Flat design often uses combinations of three, four, five or more vivid color choices to create a palette, rather than the standard of only one or two dominant colors for most projects.</p> <p>Bold and bright color is a way to create an element of fun in the design process. For the best results, stick to a certain color theme when selecting bold color, look for colors that have a similar saturation, tint or shading, or are from complementary positions on the color wheel. Bold color should look intentional.</p> <p>Monotone color schemes are popular when it comes to flat design as well. The color palette often beings with a vibrant hue, such as emerald or peach, and uses both tints (the addition of white) and tones (the addition of black) to create contrast and variety.</p> <p>Multicolored panels are another common option. Rather than mixing and matching colors throughout the design, each scrolled page or panel uses a different and singular color with black and white. The overall effect can be visually appealing and helps create a sense of organization and visual hierarchy.</p> <h2>Flat design color palette (free)</h2> <p>Grab the HTML and CSS for flat-style colors with <a href="http://codepen.io/cobblucas/pen/iGpIf" rel="nofollow external" class="bo">pre-made code from Lucas Cobb.</a> HTML and CSS is written and ready-to-use for 20 colors commonly used in flat design. Match each color to the named chart, grab the code and add to your site. The hues are the same as those highlighted by Flat UI colors.</p> <p><a href="http://codepen.io/cobblucas/pen/iGpIf" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/codepen.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat UI colors (free)</h2> <p><a href="http://flatuicolors.com/" rel="nofollow external" class="bo">Flat UI colors</a> is a simple site that showcases the most popular hues in flat design. Flat UI Colors highlights 20 of these popular colors and allows users to get corresponding RGB or HEX values for each color with just a click. Select the color format, click on the color, and the values are saved to your clipboard.</p> <p><a href="http://flatuicolors.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flat-ui-colors.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Adobe Kuler (free)</h2> <p>Users of <a href="https://kuler.adobe.com/flat-colors-art-colors/" rel="nofollow external" class="bo">Adobe’s Kuler</a> color palette generation tool have created a variety of striking combinations using colors representative of flat design. From brights to more muted retro shades, there are great palettes for inspiration available. With a click, each palette is editable and downloadable. Make sure to check out “Flat Color Set 4,” “Icon with Flat colors 5,” “Logo Lockups 2,” “FLAT COLORS Ui Bright,” and “Cool Tone Flat.”</p> <p><a href="https://kuler.adobe.com/flat-colors-art-colors/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/kuler.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>ColourLovers (free)</h2> <p><a href="http://www.colourlovers.com/palettes/search?query=flat" rel="nofollow external" class="bo">ColourLovers</a> users have created thousands of color combinations using flat color concepts. This list is sorted by user rating and is a place to generate inspiration if you don’t want to use the “same old flat colors.” Make sure to check out “the world is flat,” “satin ballet flats,” new york flat,” “flat,” and “flat earth therapy.” Click on any palette for color names and RBG and HEX values.</p> <p><a href="http://www.colourlovers.com/palettes/search?query=flat" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/colourlovers.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Typography</h1> <p>Clean typography is an important part of the flat design trend.</p> <p>Because flat design includes a focus on simplicity, type choices should be clean and simple as well. Most commonly, designers are opting for a simple sans-serif typeface and are using one or two weights. Some are branching out a little further and using one sans-serif and one novelty or speciality typeface. The trend, though, is characterize by a very limited number of typefaces per project, typically no more than two.</p> <p>The best typefaces for use in flat design projects, create a distinct sense of contrast in conjunction with the background.</p> <p>Type is often black or white, lacking additional embellishment or color. (Quite a few of the selected typefaces below are even advertised using this style and flat design concepts.)</p> <p>In addition to basic typefaces, the words used should also be kept to a minimum. Language should also be simple and easy to read to stay on point within the minimal style of flat design.</p> <p>Finally, make sure to give type plenty of room to breathe in flat design projects. This includes both space around the words themselves and letter spacing, which may be exaggerated somewhat for display type. If you opt for a thinner typeface, consider going oversized with it. Fonts with thin strokes, such as Helvetica Neue, might not create enough contrast to be clearly readable at smaller sizes or against certain backgrounds.</p> <h2>Bellota (free)</h2> <p>A sans-serif typeface that’s masquerading as a novelty font with small serifs, <a href="http://www.pixilate.com/font/bellota/" rel="nofollow external" class="bo">Bellota</a> is easy to read and ornamental, a tough combination to find. It has a feminine feel and would work well against a high-contrast background.</p> <p><a href="http://www.pixilate.com/font/bellota/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/bellota.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Caviar Dreams (free)</h2> <p><a href="http://www.nymfont.com/2009/06/new-caviar-dreams-font.html" rel="nofollow external" class="bo">This super-round typeface</a> is both modern and simple. The letters are distinct and are readable at a variety of sizes. The stroke though is rather thin and requires a background with a lot of contrast for optimum readability.</p> <p><a href="http://www.nymfont.com/2009/06/new-caviar-dreams-font.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/caviar.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flex Display (free)</h2> <p>Apple stirred quite a debate in the design community about the use of an uber-thin typeface in its upcoming iOS 7 release (a decision that has been backtracked somewhat). But a thin typeface can work in certain situations. <a href="http://www.behance.net/gallery/Flex-Display-free-fonts/6032321" rel="nofollow external" class="bo">Flex Display</a> includes a very thin stroke and has practical application as a large or oversized typeface in a high contrast situation.</p> <p><a href="http://www.behance.net/gallery/Flex-Display-free-fonts/6032321" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flex-display.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Lato (free)</h2> <p><a href="http://www.google.com/fonts/specimen/Lato" rel="nofollow external" class="bo">Lato</a> is a simple typeface that works well at a variety of sizes and includes weights from ultra light to ultra bold. The typeface is quite popular among designers working on flat design projects. This is not the typeface to select if you want your type to look different from the mainstream.</p> <p><a href="http://www.google.com/fonts/specimen/Lato" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/lato.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Telegrafico (free)</h2> <p>Another <a href="http://ficod.deviantart.com/art/telegrafico-65509498" rel="nofollow external" class="bo">all caps typeface,</a> with a wide stroke that works well with plenty of space. The look is modern with a wide stance and sharp edges.</p> <p><a href="http://ficod.deviantart.com/art/telegrafico-65509498" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/telegrafico.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Proxima Nova (from $29)</h2> <p>Fonts from the <a href="http://www.myfonts.com/fonts/marksimonson/proxima-nova/" rel="nofollow external" class="bo">Proxima Nova family</a> offer plenty of options and are quite popular among designers. The simple and elegant style of the sans-serif typeface makes it easy to use and pair with other styles. The simple geometric style is consistent with the feel of flat design.</p> <p><a href="http://www.myfonts.com/fonts/marksimonson/proxima-nova/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/proxima-nova.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>FF DIN (from $78 approx.)</h2> <p>Simple, plain and geometric, DIN was constructed by the German standards institute for use on road signs — the very definition of flat and simple. Its popularity lead to <a href="https://www.fontfont.com/fonts/din" rel="nofollow external" class="bo">FF DIN</a> a highly successful digital version.</p> <p><a href="https://www.fontfont.com/fonts/din" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/DIN.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Montserrat (free)</h2> <p>Geometric simplicity and a rounded almost light-hearted feeling, make <a href="http://www.google.com/fonts/specimen/Montserrat" rel="nofollow external" class="bo">Monserrat</a> a great choice for flat design.</p> <p><a href="http://www.google.com/fonts/specimen/Montserrat" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/montserrat.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Primary Sans (free)</h2> <p>Flat design excels at simplicity and <a href="http://www.behance.net/gallery/Primary-Sans/9205391" rel="nofollow external" class="bo">this great rounded typeface</a> is simplicity itself.</p> <p><a href="http://www.behance.net/gallery/Primary-Sans/9205391" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/primary.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Dense (free)</h2> <p>The core characteristic of flat design is the lack of complexity. When it comes to typefaces, that means geometric construction, like <a href="http://www.behance.net/gallery/Dense-typeface/10231891" rel="nofollow external" class="bo">Dense.</a></p> <p><a href="http://www.behance.net/gallery/Dense-typeface/10231891" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/dense.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Riona Sans (from $25)</h2> <p>If you’re looking for a slightly more serious typeface for business use, but still want a flat aesthetic, then look no further than <a href="http://www.behance.net/gallery/Riona-Sans-Typeface/8349583" rel="nofollow external" class="bo">Riona Sans.</a></p> <p><a href="http://www.behance.net/gallery/Riona-Sans-Typeface/8349583" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/riona.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Bariol (free)</h2> <p><a href="http://www.bariol.com/" rel="nofollow external" class="bo">Bariol</a> is another friendly face with very rounded terminals. A much better option that Arial Rounded, its geometry feels not unlike a stencil.</p> <p><a href="http://www.bariol.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/bariol1.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Canter (free on request)</h2> <p>Connected perhaps to the ice-cream colors that unite flat design with modernism, modernist styles also creep into typefaces; <a href="http://www.behance.net/gallery/Canter-Typeface/7970027" rel="nofollow external" class="bo">Canter</a>, with its top-heavy proportions is a prime example.</p> <p><a href="http://www.behance.net/gallery/Canter-Typeface/7970027" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/canter.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Deco Neue (free)</h2> <p>Another tribute to modernism, <a href="http://www.behance.net/gallery/Free-Typeface-Deco-Neue/2919157" rel="nofollow external" class="bo">Deco Neue</a> should probably be named Neue Deco, but let’s not hold that against it. It’s a great choice for striking display text.</p> <p><a href="http://www.behance.net/gallery/Free-Typeface-Deco-Neue/2919157" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/deco-neue.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Niveau (from $40)</h2> <p>Again, geometric simplicity is a great choice for a flat, even tone. <a href="http://www.behance.net/gallery/Niveau-Grotesk-(Typefamily)/9499697" rel="nofollow external" class="bo">Niveau</a> provides an excellent example.</p> <p><a href="http://www.behance.net/gallery/Niveau-Grotesk-(Typefamily)/9499697" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/niveau.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Tutorials</h1> <p>While flat design is more of a style than learned tool, designers can familiarize themselves with some of the tricks and techniques commonly used.</p> <p>Video tutorials can be one of the easiest ways to learn something new. For the best results, choose a video that is on par with your knowledge level when it comes to software used and speed of the lesson.</p> <h2>Flat design video tutorial (free)</h2> <p><a href="http://www.youtube.com/watch?v=sWubHWYnjpQ&amp;feature=player_embedded" rel="nofollow external" class="bo">This 17-plus minute video</a> from Designmodo takes you through the steps to create a simple website in the flat design style using Adobe Photoshop.</p> <p>The video covers how to place elements, create a color palette and some of Designmodo’s top font choices. It also takes you though working on a grid and how to use a user interface kit in the design process.</p> <p>(The video instructor uses parts from two Designmodo kits, Flat UI and Flat UI Pro, which we mentioned above.) The instructions are simple and easy to follow but you need to be comfortable with Adobe software to get the most from this video tutorial.</p> <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/sWubHWYnjpQ" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div> <p> </p> <h2>Flat web design video tutorial (free)</h2> <p><a href="http://www.1stwebdesigner.com/tutorials/flat-web-design-tutorial/" rel="nofollow external" class="bo">This video by 1st Web Designer</a> takes you through building a portfolio landing page in the flat style in an almost hour-long video designed for beginners.</p> <p>The tutorial walks you through using tools in Photoshop to create a basic landing page on a grid and using parts from UI kits.</p> <p>The instructions are clear and easy to follow and the video moves at a pace that is good for those who may not have a lot of Photoshop experience.</p> <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/4M8FDqVie2s" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div> <p> </p> <h2>How to create a long shadow (free)</h2> <p><a href="http://www.awwwards.com/flat-long-shadows-step-by-step-tutorial-resources-and-examples.html" rel="nofollow external" class="bo">This simple tutorial</a> requires basic knowledge of Adobe Illustrator and takes you through the step-by-step process of creating a long shadow using either the pathfinder tool or blend option. With either method, you can create an icon with a long shadow in a matter of minutes.</p> <p><a href="http://www.awwwards.com/flat-long-shadows-step-by-step-tutorial-resources-and-examples.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/long-shadow-tutorial.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Make my design flat (free)</h2> <p>Self-promoted as “the simplest flat design tutorial on the web” <a href="http://makemydesignflat.com/" rel="nofollow external" class="bo">Make My Design Flat,</a> provides simple before and after code that converts buttons into the flat style.</p> <p>The site provides a visual example and shows the code for each type of button. You can copy the code or use it to help configure your own.</p> <p><a href="http://netdna.webdesignerdepot.com/uploads/2013/08/make-flat.jpg" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/make-flat.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Zach Swinehart’s flat design tutorials (free)</h2> <p><a href="http://www.youtube.com/watch?v=LnTUQ-O8v6w" rel="nofollow external" class="bo">In this two-part video series</a> on flat design, video web tools trainer Zach Swinehart explains flat design concepts, gives you a few tips for using it, and showcases a few examples.</p> <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/LnTUQ-O8v6w" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div> <p>In <a href="http://www.youtube.com/watch?v=m1fPvn0XroU&amp;list=TLrEh051tXmKw" rel="nofollow external" class="bo">part 2,</a> he walks you through creating a simple flat website in Photoshop, including techniques for creating contrast, color blocks and type.</p> <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/m1fPvn0XroU" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div> <p> </p> <h1>Flat design articles</h1> <p>There’s been some fascinating discussion on flat design across the web. If you truly want to understand the genre and how can best be applied check out these great articles.</p> <h2>The Flat Design Era</h2> <p><a href="http://layervault.tumblr.com/post/32267022219/flat-interface-design" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/era.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat Design: Trend or Revolution?</h2> <p><a href="http://www.webinsation.com/flat-design-trend-or-revolution/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/webinsation.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>What is flat design?</h2> <p><a href="http://www.creativebloq.com/graphic-design/what-flat-design-3132112" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/creativebloq.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Principles of Flat Design</h2> <p><a href="http://designmodo.com/flat-design-principles/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/designmodo.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Basic Principles of Flat Design – And Resources to Get You Started!</h2> <p><a href="http://www.1stwebdesigner.com/design/flat-design-principles/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/1stwebdesigner.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Get Pumped Up Over Flat Design</h2> <p><a href="http://www.adaptistration.com/blog/2013/08/27/get-pumped-up-over-flat-design/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/adaptistration.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat Design: An In-Depth Look</h2> <p><a href="http://www.awwwards.com/flat-design-an-in-depth-look.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/awwwards.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Authentic Design</h2> <p><a href="http://www.smashingmagazine.com/2013/07/16/authentic-design/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/smashing.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>A Look at Flat Design and Why It’s Significant</h2> <p><a href="http://uxmag.com/articles/a-look-at-flat-design-and-why-its-significant" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/uxmagazine.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>How to Nail the Coveted Flat Design Look (9 Actionable Tips)</h2> <p><a href="http://psd.fanextra.com/articles/flat-design-trend/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/psdfan.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Flat design inspiration</h1> <p>All this talk of flat design wouldn’t be complete without a gallery for inspiration.</p> <p>With new projects using flat design being published every day, there’s no way to keep up with every new site, UI pack or project, but these resources are cataloging some of the best with frequent updates. </p> <h2>Awwwards flat design gallery</h2> <p><a href="http://www.awwwards.com/search-websites?text=flat" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/awwwards.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a> </p> <p> </p> <h2>Behance flat design gallery</h2> <p><a href="http://www.behance.net/search?search=flat+design" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/behance.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Dribbble flat design gallery</h2> <p><a href="http://dribbble.com/search?q=flat+design" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/dribbble.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat design gallery</h2> <p><a href="http://flatdesigngallery.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/fdg.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat design on Pinterest <a href="http://pinterest.com/search/pins/?q=flat%20design&amp;rs=ac&amp;len=11%20" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/pinterest.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a>
    </h2> <p> </p> <h2>FlatDSGN gallery</h2> <p><a href="http://flatdsgn.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flatdsgn.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat UI Design </h2> <p><a href="http://fltdsgn.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/flat_ui.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>Flat trendz gallery</h2> <p><a href="http://flattrendz.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flat_trendz.jpg" width="650" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Conclusion</h1> <p>It’s easier than you think to get started with flat design techniques especially considering all the tools and resources readily available. But you should act quickly because trends can fade just as quickly as they start.</p> <p>Flat design quickly developed from a designer trend to a mainstream technique, being used by large websites such as Google, Microsoft and Yahoo. If it can work for sites of that magnitude, it can work for a variety of projects. But it may not be for everything, remember when starting a new project to let the content and message of the site help dictate the design. Flat often communicates simplicity; keep that in mind.</p> <p> </p> <p><em><strong>Have you designed a flat project? What resources did you find more useful? Let us know in the comments.</strong></em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/jolly-icons.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Jollycons! 400 Fun Hand-Drawn Vector Icons – only $14!</strong></a> </td> <td> <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br> <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" alt="The ultimate guide to flat design" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/09/the-ultimate-guide-to-flat-design/" rel="nofollow external" class="bo">Source</a> <br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fthe-ultimate-guide-to-flat-design%2F&amp;t=The+ultimate+guide+to+flat+design" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fthe-ultimate-guide-to-flat-design%2F&amp;t=The+ultimate+guide+to+flat+design" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fthe-ultimate-guide-to-flat-design%2F&amp;t=The+ultimate+guide+to+flat+design" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fthe-ultimate-guide-to-flat-design%2F&amp;t=The+ultimate+guide+to+flat+design" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F09%2Fthe-ultimate-guide-to-flat-design%2F&amp;t=The+ultimate+guide+to+flat+design" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/173608603887/u/49/f/661066/c/35285/s/30afa00e/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608603887/u/49/f/661066/c/35285/s/30afa00e/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>It is easy to say that 2013 has so far been the year of flat design.   Even Apple, the driver of the skeuomorphic design trend for many years, is trying some level of flat design when it releases...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/30afa00e/sc/4/l/0L0Swebdesignerdepot0N0C20A130C0A90Cthe0Eultimate0Eguide0Eto0Eflat0Edesign0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35022/guest@my.umbc.edu/7899701fc11fffbd915fb6891391665f/api/pixel</TrackingUrl>
<Tag>almost-flat-design</Tag>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>flat-design</Tag>
<Tag>flat-design-resources</Tag>
<Tag>flat-design-templates</Tag>
<Tag>flat-design-themes</Tag>
<Tag>flat-design-tutorials</Tag>
<Tag>flat-icons</Tag>
<Tag>flat-ui-kits</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>long-shadow-resources</Tag>
<Tag>long-shadow-tutorials</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>resources</Tag>
<Tag>sql</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 02 Sep 2013 05:15:01 -0400</PostedAt>
<EditAt>Mon, 02 Sep 2013 05:15:01 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="35023" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35023">
<Title>Global Patent Map Reveals the Structure of Technological Progress</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>By mapping the way patents cite each other, network scientists have been able to study how different technologies rely on each other and how new technologies emerge</p>
    <p><img src="https://www.technologyreview.com/sites/default/files/images/Patent%20map.png" alt="" width="525" height="326" style="max-width: 100%; height: auto;"></p>
    </div>
]]>
</Body>
<Summary>By mapping the way patents cite each other, network scientists have been able to study how different technologies rely on each other and how new technologies emerge</Summary>
<Website>http://www.technologyreview.com/view/518991/global-patent-map-reveals-the-structure-of-technological-progress/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35023/guest@my.umbc.edu/6204a7b330c824de61b56c6c7c851018/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 02 Sep 2013 05:05:35 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35019" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35019">
<Title>DealBook: Verizon Is Expected to Pay $130 Billion for Stake in Vodafone Joint Venture</Title>
<Body>
<![CDATA[
    <div class="html-content">Verizon Communications neared a deal on Sunday to buy the 45 percent stake in its wireless business held by Vodafone, people briefed on the matter said.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F01%2Fverizon-is-expected-to-pay-130-billion-for-stake-in-vodafone-joint-venture%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Verizon+Is+Expected+to+Pay+%24130+Billion+for+Stake+in+Vodafone+Joint+Venture" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F01%2Fverizon-is-expected-to-pay-130-billion-for-stake-in-vodafone-joint-venture%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Verizon+Is+Expected+to+Pay+%24130+Billion+for+Stake+in+Vodafone+Joint+Venture" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F01%2Fverizon-is-expected-to-pay-130-billion-for-stake-in-vodafone-joint-venture%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Verizon+Is+Expected+to+Pay+%24130+Billion+for+Stake+in+Vodafone+Joint+Venture" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F01%2Fverizon-is-expected-to-pay-130-billion-for-stake-in-vodafone-joint-venture%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Verizon+Is+Expected+to+Pay+%24130+Billion+for+Stake+in+Vodafone+Joint+Venture" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F01%2Fverizon-is-expected-to-pay-130-billion-for-stake-in-vodafone-joint-venture%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Verizon+Is+Expected+to+Pay+%24130+Billion+for+Stake+in+Vodafone+Joint+Venture" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/173608593463/u/0/f/640387/c/34625/s/30ac769f/sc/2/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608593463/u/0/f/640387/c/34625/s/30ac769f/sc/2/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173608593463/u/0/f/640387/c/34625/s/30ac769f/sc/2/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608593463/u/0/f/640387/c/34625/s/30ac769f/sc/2/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173608593463/u/0/f/640387/c/34625/s/30ac769f/sc/2/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608593463/u/0/f/640387/c/34625/s/30ac769f/sc/2/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/173608593463/u/0/f/640387/c/34625/s/30ac769f/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608593463/u/0/f/640387/c/34625/s/30ac769f/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Verizon Communications neared a deal on Sunday to buy the 45 percent stake in its wireless business held by Vodafone, people briefed on the matter said.      </Summary>
<Website>http://dealbook.nytimes.com/2013/09/01/verizon-is-expected-to-pay-130-billion-for-stake-in-vodafone-joint-venture/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35019/guest@my.umbc.edu/dbe726700f0749dc28e907564e57073d/api/pixel</TrackingUrl>
<Tag>mergers-acquisitions-and-divestitures</Tag>
<Tag>mergers-and-acquisitions</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>telecommunications</Tag>
<Tag>top-headline-1</Tag>
<Tag>verizon-communications-inc</Tag>
<Tag>vodafone-group-plc</Tag>
<Tag>wireless-communications</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Sun, 01 Sep 2013 21:54:21 -0400</PostedAt>
<EditAt>Mon, 02 Sep 2013 13:35:17 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="35021" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35021">
<Title>Drug Agents Use Vast Phone Trove, Eclipsing N.S.A.&#8217;s</Title>
<Body>
<![CDATA[
    <div class="html-content">The scale and longevity of a data storage program run by the government in partnership with AT&amp;T was unmatched by other government programs, including the National Security Agency’s gathering of phone call logs.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F09%2F02%2Fus%2Fdrug-agents-use-vast-phone-trove-eclipsing-nsas.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Drug+Agents+Use+Vast+Phone+Trove%2C+Eclipsing+N.S.A.%E2%80%99s" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F09%2F02%2Fus%2Fdrug-agents-use-vast-phone-trove-eclipsing-nsas.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Drug+Agents+Use+Vast+Phone+Trove%2C+Eclipsing+N.S.A.%E2%80%99s" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F09%2F02%2Fus%2Fdrug-agents-use-vast-phone-trove-eclipsing-nsas.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Drug+Agents+Use+Vast+Phone+Trove%2C+Eclipsing+N.S.A.%E2%80%99s" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F09%2F02%2Fus%2Fdrug-agents-use-vast-phone-trove-eclipsing-nsas.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Drug+Agents+Use+Vast+Phone+Trove%2C+Eclipsing+N.S.A.%E2%80%99s" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F09%2F02%2Fus%2Fdrug-agents-use-vast-phone-trove-eclipsing-nsas.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Drug+Agents+Use+Vast+Phone+Trove%2C+Eclipsing+N.S.A.%E2%80%99s" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    </div>
]]>
</Body>
<Summary>The scale and longevity of a data storage program run by the government in partnership with AT&amp;T was unmatched by other government programs, including the National Security Agency’s gathering...</Summary>
<Website>http://www.nytimes.com/2013/09/02/us/drug-agents-use-vast-phone-trove-eclipsing-nsas.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35021/guest@my.umbc.edu/16071529a5d66eae9a00af467e8c1cfd/api/pixel</TrackingUrl>
<Tag>at-and-t-inc-t-nyse</Tag>
<Tag>drug-abuse-and-traffic</Tag>
<Tag>drug-enforcement-administration</Tag>
<Tag>industrial-espionage</Tag>
<Tag>national-security-agency</Tag>
<Tag>new</Tag>
<Tag>sprint-nextel-corporation-s-nyse</Tag>
<Tag>surveillance-of-citizens-by-government</Tag>
<Tag>t-mobile-us-inc-tmus-nyse</Tag>
<Tag>technology</Tag>
<Tag>telephones-and-telecommunications</Tag>
<Tag>verizon-communications-inc-vz-nyse</Tag>
<Tag>white-house-office-of-national-drug-control-policy</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Sun, 01 Sep 2013 21:31:39 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35020" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35020">
<Title>Japan&#8217;s E-Reader Industry Struggles to Keep Up as Amazon Takes the Lead</Title>
<Body>
<![CDATA[
    <div class="html-content">Although local companies brought e-readers to market in Japan before Amazon did, Amazon’s experience elsewhere with e-book sales rapidly gave it an edge with consumers and publishers.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F09%2F02%2Fbusiness%2Fglobal%2Fjapans-e-reader-industry-struggles-to-keep-up-as-amazon-takes-the-lead.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Japan%E2%80%99s+E-Reader+Industry+Struggles+to+Keep+Up+as+Amazon+Takes+the+Lead" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F09%2F02%2Fbusiness%2Fglobal%2Fjapans-e-reader-industry-struggles-to-keep-up-as-amazon-takes-the-lead.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Japan%E2%80%99s+E-Reader+Industry+Struggles+to+Keep+Up+as+Amazon+Takes+the+Lead" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F09%2F02%2Fbusiness%2Fglobal%2Fjapans-e-reader-industry-struggles-to-keep-up-as-amazon-takes-the-lead.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Japan%E2%80%99s+E-Reader+Industry+Struggles+to+Keep+Up+as+Amazon+Takes+the+Lead" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F09%2F02%2Fbusiness%2Fglobal%2Fjapans-e-reader-industry-struggles-to-keep-up-as-amazon-takes-the-lead.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Japan%E2%80%99s+E-Reader+Industry+Struggles+to+Keep+Up+as+Amazon+Takes+the+Lead" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F09%2F02%2Fbusiness%2Fglobal%2Fjapans-e-reader-industry-struggles-to-keep-up-as-amazon-takes-the-lead.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Japan%E2%80%99s+E-Reader+Industry+Struggles+to+Keep+Up+as+Amazon+Takes+the+Lead" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/173953281839/u/0/f/640387/c/34625/s/30ac76a1/sc/21/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173953281839/u/0/f/640387/c/34625/s/30ac76a1/sc/21/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173953281839/u/0/f/640387/c/34625/s/30ac76a1/sc/21/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173953281839/u/0/f/640387/c/34625/s/30ac76a1/sc/21/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173953281839/u/0/f/640387/c/34625/s/30ac76a1/sc/21/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173953281839/u/0/f/640387/c/34625/s/30ac76a1/sc/21/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/173953281839/u/0/f/640387/c/34625/s/30ac76a1/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173953281839/u/0/f/640387/c/34625/s/30ac76a1/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Although local companies brought e-readers to market in Japan before Amazon did, Amazon’s experience elsewhere with e-book sales rapidly gave it an edge with consumers and publishers.      </Summary>
<Website>http://www.nytimes.com/2013/09/02/business/global/japans-e-reader-industry-struggles-to-keep-up-as-amazon-takes-the-lead.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35020/guest@my.umbc.edu/ca8e794bd4b152480da3edc54786f9e0/api/pixel</TrackingUrl>
<Tag>amazon-com-inc-amzn-nasdaq</Tag>
<Tag>amazon-kindle</Tag>
<Tag>e-books-and-readers</Tag>
<Tag>e-commerce</Tag>
<Tag>japan</Tag>
<Tag>kobo-inc</Tag>
<Tag>new</Tag>
<Tag>sony-corporation-sne-nyse</Tag>
<Tag>technology</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Sun, 01 Sep 2013 20:41:53 -0400</PostedAt>
<EditAt>Tue, 03 Sep 2013 15:18:25 -0400</EditAt>
</NewsItem>

</News>
