<?xml version="1.0"?>
<News hasArchived="true" page="7586" pageCount="10801" pageSize="10" timestamp="Wed, 09 Sep 2026 13:18:29 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7586&amp;range=30">
<NewsItem contentIssues="false" id="44020" important="false" status="posted" url="https://my3.my.umbc.edu/posts/44020">
<Title>Improving UI Animation Workflow with Velocity.js</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em>The following is a guest post by <a href="http://julian.com/" rel="nofollow external" class="bo">Julian Shapiro</a>. Julian recently released Velocity.js, a more performant jQuery replacement for <code>.animate()</code>. He recently <a href="http://davidwalsh.name/css-js-animation" rel="nofollow external" class="bo">wrote about</a> <strong>how</strong> JavaScript animations can be so fast over on David Walsh's blog, a topic we've <a href="http://css-tricks.com/myth-busting-css-animations-vs-javascript/" rel="nofollow external" class="bo">covered here</a> as well. In this article, Julian introduces Velocity.js itself.</em></p>
    <p></p>
    <p><a href="http://julian.com/research/velocity/" rel="nofollow external" class="bo">Velocity.js</a> is a jQuery plugin that re-implements jQuery's <code>$.animate()</code> function to produce significantly higher performance (making Velocity also faster than CSS transitions in many cases) while including several new features to improve animation workflow.</p>
    <p>In 7Kb (zipped), Velocity includes all of <code>$.animate()</code>'s features while also packing in transform animation, looping, class animation, and scrolling. In short, Velocity is designed to be the best of jQuery, jQuery UI, and CSS transitions.</p>
    <p>Velocity works everywhere — back to IE8 and Android 2.3. Further, since Velocity's syntax is identical to <code>$.animate()</code>'s, none of your page's code needs to change.</p>
    <p>The goal of Velocity is to be a leader in DOM animation performance and convenience. This article focuses on the latter. To learn more about the former, refer to Velocity's performance comparisons over at <a href="http://VelocityJS.org" rel="nofollow external" class="bo">VelocityJS.org</a>. In particular, this article demonstrates how to use Velocity to improve your UI animation workflow. In a concise showdown, eight of Velocity's features are compared against their jQuery counterparts.</p>
    <p>If you feel that your current UI workflow is messy, poorly segregated, or too reliant upon jQuery’s broad array of style functions, then this walkthrough is for you.</p>
    <h3>Brief Overview</h3>
    <p>Before we dive into Velocity, let's quickly cover the bases: It should be pointed out that both <code>$.animate()</code> and <code>$.velocity()</code> support a malleable options syntax. You can either pass in options as comma-separated values, or you can pass in a standalone options object.</p>
    <p>Here's an example of the comma-separated syntax, in which an integer is treated as the animation's duration, a string is treated as the easing type, and a function is treated as a callback (which is triggered upon the animation's completion):</p>
    <pre><code>$div.animate(&#x000A;      { &#x000A;        opacity: 1 &#x000A;      }, &#x000A;      1000, &#x000A;      "linear", &#x000A;      function() { &#x000A;        alert("Done animating."); &#x000A;      }&#x000A;    );</code></pre>
    <p>Next, here's an example of the object syntax:</p>
    <pre><code>$div.animate(&#x000A;      { &#x000A;        opacity: 1 &#x000A;      }, &#x000A;      { &#x000A;        duration: 1000, &#x000A;        easing: "linear", &#x000A;        complete: function() { &#x000A;          alert("Done animating!") &#x000A;        }, &#x000A;        queue: "myQueue" &#x000A;      }&#x000A;    );</code></pre>
    <p>Beyond producing cleaner-looking code, using the options object provides access to additional animation parameters that are otherwise not able to be specified via the comma-separated syntax.</p>
    <p>An example of one such option provided by jQuery is "queue". Velocity also provides the queue option, and multiple animation calls chained onto a single element automatically queue onto one another.</p>
    <p>Here, a div's opacity will be animated to 1 for 1000ms then back down to 0 for the next 1000ms:</p>
    <pre><code>$div&#x000A;      .animate({ opacity: 1 }, 1000)&#x000A;      .animate({ opacity: 0 }, 1000);</code></pre>
    <p>Now, with the bases out of the way, let's start comparing Velocity to jQuery.</p>
    <h3>Reversing</h3>
    <p>In place of a properties map, Velocity also accepts <code>"reverse"</code> as its first parameter. Reverse animates the target element toward its values prior to its previous Velocity call.</p>
    <p>In jQuery, that would be like:</p>
    <pre><code>$div&#x000A;      /* Fade an element in while sliding it into view. */&#x000A;      .animate({ opacity: 1, top: "50%" })&#x000A;      /* The values below are what we originally set the element to in our stylesheet. Animate back to them. */ &#x000A;      .animate({ opacity: 0, top: "-25%" });</code></pre>
    <p>In Velocity, it's easier as it is not only less code, but you don't have to repeat values from your stylesheet:</p>
    <pre><code>$div&#x000A;      .velocity({ opacity: 1, top: "50%" })&#x000A;      .velocity("reverse");</code></pre>
    <p>By default, Velocity's reverse command uses the same options that were passed into the previous Velocity call. These options can be extended by passing new options into the "reverse" call. For example:</p>
    <pre><code>$div&#x000A;      .velocity({ opacity: 1, top: "50%" }, 1000)&#x000A;      /* Animate back to the prior visual state at half the duration of the previous animation. */&#x000A;      .velocity("reverse", 500);</code></pre>
    <h3>Scrolling</h3>
    <p>A popular UI technique is to scroll the browser so that it's aligned with an element further down the page, then to animate that element with attention-grabbing flourishes. Pulling this off with jQuery involves messy, non-performant code:</p>
    <p>In jQuery, animating the <code>scrollTop</code> property requires you to target both the <code>html</code> element and the <code>body</code> element in order for the animation to work in older versions of Internet Explorer.</p>
    <pre><code>$("html, body").animate(&#x000A;      { &#x000A;        scrollTop: $div.offset().top &#x000A;      }, &#x000A;      1000, &#x000A;      function() {&#x000A;        /* We use a callback to fade in the div once the browser has completed scrolling. */&#x000A;        $div.animate({ opacity: 1 });&#x000A;      }&#x000A;    );</code></pre>
    <p>In Velocity, you target the element you want to scroll to:</p>
    <pre><code>$div&#x000A;      .velocity("scroll", 1000)&#x000A;      .velocity({ opacity: 1 });</code></pre>
    <p>Just as with Velocity's "reverse" command, "scroll" can be passed in as Velocity's first parameter in place of a properties map. Also like the reverse command, the scroll command accepts animation options and can be chained onto other calls.</p>
    <p>The scroll command's behavior is straightforward: Scroll the browser to the top of the element targeted by the Velocity call.</p>
    <h3>Looping</h3>
    <p>Oftentimes, an element's animation needs to be looped. Examples include shaking a dialog box to indicate invalid user input or bouncing a notification icon to grab the user's attention.</p>
    <p>In jQuery, looping an animation entails messing your animation logic by breaking part of it out into a for statement:</p>
    <pre><code>for (var i = 0; i &lt; 5; i++) {&#x000A;      $div&#x000A;        /* Slide the element up by 100px. */&#x000A;        .animate({ top: -100 })&#x000A;        /* Then animate back to the original value. */&#x000A;        .animate({ top: 0 });&#x000A;    }</code></pre>
    <p>In Velocity, simply set the loop option to an integer equal to the desired number of loop cycles. A single loop cycle consists of animating toward the values in the property map followed by reversing back to the original values.</p>
    <pre><code>$div.velocity(&#x000A;      { top: -100 }, &#x000A;      { loop: 5 }&#x000A;    );</code></pre>
    <h3>Fading Elements</h3>
    <p>You'll often find yourself fading in an element whose display property was initially set to <code>none</code>, so that the element wasn't immediately visible upon page load. Subsequently fading in these elements requires several lines of jQuery:</p>
    <pre><code>$div&#x000A;      /* Use jQuery's $.show() function to make the element visible by switching its display property to "block"/"inline" as appropriate. */&#x000A;      .show()&#x000A;      /* Set the element's starting opacity to 0 so that it can be gradually faded in by the subsequent animation call. */&#x000A;      .css("opacity", 0)&#x000A;      /* Fade in and slide into view. */&#x000A;      .animate({ &#x000A;        opacity: 1, &#x000A;        top: "50%" &#x000A;      });</code></pre>
    <p>In Velocity, you simply pass in display as an option. The display option accepts the same set of values that its CSS property counterpart does (e.g. "block", "inline", and "none").</p>
    <pre><code>$div.velocity(&#x000A;      { &#x000A;        opacity: 1, &#x000A;        top: "50%" &#x000A;      },&#x000A;      { &#x000A;        display: "block" &#x000A;      }&#x000A;    );</code></pre>
    <p>When the <code>display</code> option is set to a value other than <code>none</code>, the element's <code>display</code> property is set to the provided value at the <em>start</em> of the animation. Conversely, when display is passed a value of <code>none</code>, the display property is set upon the animation's <em>completion</em>.</p>
    <pre><code>$div&#x000A;      /* Fade out and slide out of view. */&#x000A;      .animate({ opacity: 0, top: "-50%" })&#x000A;      /* Then set the display property to "none" via a queued $.fadeOut() call. */&#x000A;      .fadeOut(1);</code></pre>
    <pre><code>$div.velocity(&#x000A;      { &#x000A;        opacity: 0,&#x000A;        top: "-50%" &#x000A;      }, &#x000A;      { &#x000A;        display: "none" &#x000A;      }&#x000A;    );</code></pre>
    <p>Further, if an element's <code>opacity</code> is being animated to a non-zero value while its <code>display</code> option is being set to a value other than <code>none</code>, Velocity conveniently defaults <code>opacity</code>'s start value to 0.</p>
    <h3>Delaying</h3>
    <p>Velocity accepts a delay option that replaces having to sprinkle <code>$.delay()</code> calls throughout your animation code:</p>
    <pre><code>$div&#x000A;      .delay(1000)&#x000A;      .animate({ &#x000A;        opacity: 1 &#x000A;      });</code></pre>
    <pre><code>$div.velocity(&#x000A;      { &#x000A;        opacity: 1 &#x000A;      }, &#x000A;      { &#x000A;        delay: 1000 &#x000A;      }&#x000A;    );</code></pre>
    <p>Beyond consolidating animation logic into a single call, using Velocity's built-in delay option allows Velocity to optimize chained animations by caching values between them.</p>
    <h3><del>Class Animation</del></h3>
    <p>This article used to have a bit about class animations (e.g. animating the properties from one class, as defined in CSS, to another). It has been removed, at the request of Julian, as it has been replaced in the library with the more powerful <a href="http://julian.com/research/velocity/#sequences" rel="nofollow external" class="bo">Sequences</a> feature.</p>
    <h3>Forced Hardware Acceleration</h3>
    <p>Forcing hardware acceleration (HA) on an element is an easy to way to dramatically increase animation performance on mobile devices. Enabling HA is traditionally achieved by setting an element's transform property to <code>translateZ(0)</code>.</p>
    <pre><code>$div&#x000A;      .css("transform", "translateZ(0)")&#x000A;      .animate({ opacity: 1 })&#x000A;      .css("transform", "none");</code></pre>
    <p>In Velocity, HA is automatically applied on mobile devices (there's no performance boost to be gained on the desktop). Velocity's control over HA is highly optimized. </p>
    <pre><code>$div.velocity({ opacity: 1 });</code></pre>
    <h3>Wrapping Up</h3>
    <p>The purpose of this walkthrough has been to demonstrate Velocity's consolidation of animation logic within your code. In short, Velocity is an expressive and efficient tool for crafting UI animations.</p>
    <p>While jQuery is tremendously powerful, it was never jQuery's design goal to function as an optimized animation engine, and it suffers accordingly from less-than-ideal performance and workflows. At just 7Kb zipped, Velocity packs in enough features and speed gains for you to consider making it your animation engine of choice.</p>
    <p>To explore the remainder of Velocity's features, including color and transform animation, check out Velocity's documentation at VelocityJS.org.</p>
    <p>Before we conclude, here are some extreme examples of web animation that are made possible through the expressiveness and speed of Velocity:</p>
    <ul>
    <li><a href="http://julian.com/research/velocity/demo.html" rel="nofollow external" class="bo">3D demo</a></li>
    <li><a href="http://danielraftery.com/read/Animating-Awesomeness-with-Velocityjs" rel="nofollow external" class="bo">Virtual world demo</a></li>
    <li><a href="http://zachsaucier.com/fp.html" rel="nofollow external" class="bo">HUD demo</a></li>
    <li><a href="http://julian.com/research/velocity/playground.html" rel="nofollow external" class="bo">Multimedia demo</a></li>
    </ul>
    <hr>
    <p><small><a href="http://css-tricks.com/improving-ui-animation-workflow-velocity-js/" rel="nofollow external" class="bo">Improving UI Animation Workflow with Velocity.js</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>The following is a guest post by Julian Shapiro. Julian recently released Velocity.js, a more performant jQuery replacement for .animate(). He recently wrote about how JavaScript animations can be...</Summary>
<Website>http://css-tricks.com/improving-ui-animation-workflow-velocity-js/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/44020/guest@my.umbc.edu/f5df0448a55bd1d031ea7fdb0b1a607c/api/pixel</TrackingUrl>
<Tag>article</Tag>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tricks</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>Wed, 30 Apr 2014 11:54:26 -0400</PostedAt>
<EditAt>Wed, 30 Apr 2014 11:54:26 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="44917" important="false" status="posted" url="https://my3.my.umbc.edu/posts/44917">
<Title>Meeting the President</Title>
<Body>
<![CDATA[
    <div class="html-content">In less than one hour, I’m going to meet the President! Not Barack Obama, which would be awesome, but the President of UMBC, Dr. Freeman Hrabowski. In some ways, this is even more special than meeting Obama, because I’ve seen … <a href="http://umbcretrievers.wordpress.com/2014/04/30/meeting-the-president/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>In less than one hour, I’m going to meet the President! Not Barack Obama, which would be awesome, but the President of UMBC, Dr. Freeman Hrabowski. In some ways, this is even more special than...</Summary>
<Website>http://umbcretrievers.wordpress.com/2014/04/30/meeting-the-president/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/44917/guest@my.umbc.edu/90ddf471ad5ab0972b874fc4dfbd518c/api/pixel</TrackingUrl>
<Tag>johns-posts</Tag>
<Group token="retired-907">Undergraduate Admissions News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-907</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/3/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/3/original.png?1787842820</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/images/avatars/group/3/xxlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/images/avatars/group/3/xlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/3/large.png?1787842820</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/3/medium.png?1787842820</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/images/avatars/group/3/small.png?1787842820</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/3/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/images/avatars/group/3/xxsmall.png?1787842820</AvatarUrl>
<Sponsor>Undergraduate Admissions News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 30 Apr 2014 11:13:36 -0400</PostedAt>
<EditAt>Wed, 30 Apr 2014 11:13:36 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="44114" important="false" status="posted" url="https://my3.my.umbc.edu/posts/44114">
<Title>High Tech and Human Resources: Yes, Silicon Valley, Sometimes You Need More Bureaucracy</Title>
<Body>
<![CDATA[
    <div class="html-content">A female engineer’s complaint of a culture of bullying at GitHub demonstrates the value of a human resources department.<br>
    </div>
]]>
</Body>
<Summary>A female engineer’s complaint of a culture of bullying at GitHub demonstrates the value of a human resources department.</Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/39ee5ea6/sc/7/l/0L0Snytimes0N0C20A140C0A50C0A10Cupshot0Cyes0Esilicon0Evalley0Ethere0Eis0Esuch0Ea0Ething0Eas0Enot0Eenough0Ebureaucracy0Bhtml0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/44114/guest@my.umbc.edu/fdbeb9e79ed9b6a27df5a6c842d18cb5/api/pixel</TrackingUrl>
<Tag>new</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>Wed, 30 Apr 2014 11:02:24 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="44016" important="false" status="posted" url="https://my3.my.umbc.edu/posts/44016">
<Title>Pi Day was a great success!</Title>
<Body>
<![CDATA[
    <div class="html-content">On Friday, March 14, 2014, University of Maryland, Baltimore County’s 
    SIAM Student Chapter, Mathematics and Statistics Graduate Student 
    Association, and Pi Mu Epsilon Chapter co-hosted a special Pi Day 
    Social.  There was food, fun, and math-related games including “Are you 
    Smarter than a Fifth Grader?” Pi Day Edition, a pi reciting contest, Pi 
    Day Sudoku, 24 Game, and a pie tasting contest.  Special emphasis was 
    placed on giving the opportunity for graduate and undergraduate students
     to network and socialize in an informal, friendly, and light-hearted 
    math environment.  The event had great turnout and was a fantastic 
    success!<br><br>See <a href="http://connect.siam.org/umbc-pi-day-social/" rel="nofollow external" class="bo">this</a> for our post on the SIAM Student Blog.  <br>
    </div>
]]>
</Body>
<Summary>On Friday, March 14, 2014, University of Maryland, Baltimore County’s  SIAM Student Chapter, Mathematics and Statistics Graduate Student  Association, and Pi Mu Epsilon Chapter co-hosted a special...</Summary>
<Website>http://connect.siam.org/umbc-pi-day-social/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/44016/guest@my.umbc.edu/fb4b3815eece8cc0c03142578055bb20/api/pixel</TrackingUrl>
<Group token="siam">SIAM Student Chapter</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/siam</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/xsmall.png?1397486201</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/original.png?1397486201</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/xxlarge.png?1397486201</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/xlarge.png?1397486201</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/large.png?1397486201</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/medium.png?1397486201</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/small.png?1397486201</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/xsmall.png?1397486201</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/xxsmall.png?1397486201</AvatarUrl>
<Sponsor>SIAM Student Chapter</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 30 Apr 2014 10:08:03 -0400</PostedAt>
<EditAt>Thu, 02 Apr 2015 19:16:15 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="44015" important="false" status="posted" url="https://my3.my.umbc.edu/posts/44015">
<Title>First Annual Howard County Math Festival</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>On Wednesday January 29<sup>th</sup>, Centennial High School held the
     first annual Howard County Math Festival. Dr. Jeffrey Sieracki, 
    President of the SIAM Washington-Baltimore Section, had the opportunity 
    to organize a presentation which illustrated various every day 
    occurrences that could be modeled using mathematics.</p>
    
    <p>SIAM Student Chapter members from UMBC (Jonathan S. McHenry, Zana 
    Coulibaly, Cherre Jefferson) and students from UMCP (Stefan Doboszczak, 
    Stephanie Young) volunteered to join Dr Sieracki in order to promote 
    mathematics by sharing our experiences as young mathematicians. We were 
    fortunate to be in attendance and enjoyed conversing with other math 
    lovers of all ages as well as interacting with the SIAM members from 
    UMCP.</p>
    <p>However, the fun did not stop there. Not only did the SIAM student 
    chapter members have the opportunity to interact with plenty of eager 
    K-12 students, but we were also surrounded by other representatives who 
    were equally STEM-passionate. Various companies, organizations, and 
    university departments, such as statisticians from the Baltimore 
    Orioles, the UMBC Department of Mathematics and Statistics, the National
     Institute of Standards and Technology, and Kumon were also in 
    attendance. Some of the presentations included learning what prime 
    number your name is, the statistics of baseball, mathematical poetry, 
    the intersection between animation and mathematics, mathematics 
    education, and the list goes on. This event had a great turnout and 
    students got the opportunity to witness firsthand that math is more than
     just manipulating numbers with algebra.</p>Visit this <a href="http://connect.siam.org/1st-annual-howard-county-math-festival/" rel="nofollow external" class="bo">link</a> for the photo! <br>
    </div>
]]>
</Body>
<Summary>On Wednesday January 29th, Centennial High School held the  first annual Howard County Math Festival. Dr. Jeffrey Sieracki,  President of the SIAM Washington-Baltimore Section, had the opportunity...</Summary>
<Website>http://connect.siam.org/1st-annual-howard-county-math-festival/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/44015/guest@my.umbc.edu/fd6da7ce560fbc0e295c38980035ab86/api/pixel</TrackingUrl>
<Group token="siam">SIAM Student Chapter</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/siam</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/xsmall.png?1397486201</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/original.png?1397486201</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/xxlarge.png?1397486201</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/xlarge.png?1397486201</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/large.png?1397486201</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/medium.png?1397486201</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/small.png?1397486201</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/xsmall.png?1397486201</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/860/d78456fce3bebc84d9320fa2f9cf9e2a/xxsmall.png?1397486201</AvatarUrl>
<Sponsor>SIAM Student Chapter</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 30 Apr 2014 10:07:45 -0400</PostedAt>
<EditAt>Thu, 02 Apr 2015 19:16:45 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="44013" important="false" status="posted" url="https://my3.my.umbc.edu/posts/44013">
<Title>2014 EY Entrepreneur of the Year Maryland finalists unveiled</Title>
<Tagline>Christopher Brandt, Audacious Inquiry LLC named finalist</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <h4>2014 EY Entrepreneur of the Year Maryland finalists unveiled</h4>
                      
    
    
    
    
    <div>
    
    
    <span>Sarah Gantz</span><br>Reporter- <em>Baltimore Business Journal</em>
          </div>
    
    
                    <p><br></p>
    <p>Baltimore entrepreneurs dominate this year’s list of finalists for EY’s 2014 Entrepreneur of the Year Maryland awards.</p>
    <p>Winners, selected by a panel of independent judges, will be named at a black-tie gala June 12 in Baltimore.</p>
    <p>The national awards program recognizes entrepreneurs who demonstrate 
    excellence in innovation, financial performance and personal commitment 
    to their business and community. Previous Maryland winners have included
     names like Kevin Plank and Scott Ferber.</p>
    <p>Here are the Maryland finalists:</p>
    <ul>
    <li>Rebecca Hoffberger, American Visionary Art Museum in Baltimore</li>
    <li>Kevin Cashen, Bay Bank in Baltimore</li>
    <li>J.M. Schapiro III, Continental Realty Corp. in Baltimore</li>
    <li>Vlad Friedman, Edgewebhosting Inc. in Baltimore</li>
    <li>David Block, Gliknik, Inc. in Baltimore</li>
    <li>Charles Werhane, Enterprise Community Investment in Baltimore</li>
    <li>Ethan Giffin, Groove in Baltimore</li>
    <li>Ryan Sysko, WellDoc Inc. in Baltimore</li>
    <li>Todd Marks, Mindgrub in Baltimore</li>
    <li>Christopher Brandt, Audacious Inquiry LLC in Catonsville</li>
    <li>Philip Green, Intelligent Solutions for Information Systems LLC in Columbia</li>
    <li>Kwame Kuadey, GiftCardRescue.com in Columbia</li>
    <li>David Costello, Costello Construction in Columbia</li>
    <li>Chris Mechanic, WebMechanix in Columbia</li>
    <li>Mike Battle, Battle Resource Management Inc. in Clarksville</li>
    <li>Bill Kraus and Steve Newton, Mission BBQ in Glen Burnie</li>
    <li>Bruce Zwicker, Haines in Glen Burnie</li>
    <li>Jacky Kimmel, InfoTeK Corp. in Hanover</li>
    <li>Len Moodispaw, <span>KEYW</span> Corp. in Hanover</li>
    <li>Doug Stewart, Milestone Intelligence Group, Inc. in Hanover</li>
    <li>Robert Graybill, FMS Solutions in Pasadena</li>
    <li>Chuck Faughnan III, Bridges Consulting Inc. in Annapolis Junction</li>
    <li>Linda Abell, Security Vault Works Inc. in Laurel</li>
    <li>Rick Wuest, Thompson Creek Window Co. in Lanham</li>
    <li>Kevin Switick, AVIAN LLC in Lexington Park</li>
    <li>Christopher Toleman, Arocon Roofing and Construction LLC in Westminster</li>
    </ul>
    </div>
]]>
</Body>
<Summary>2014 EY Entrepreneur of the Year Maryland finalists unveiled                             Sarah Gantz Reporter- Baltimore Business Journal                               Baltimore entrepreneurs...</Summary>
<Website>http://www.bizjournals.com/baltimore/news/2014/04/29/2014ernst-young-entrepreneur-of-the-year-maryland.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/44013/guest@my.umbc.edu/d83e94b407340a8b2ec28c02fe5b5bca/api/pixel</TrackingUrl>
<Group token="bwtech">bwtech@UMBC Research and Technology Park</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bwtech</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/original.png?1760034935</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/large.png?1760034935</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/medium.png?1760034935</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/small.png?1760034935</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxsmall.png?1760034935</AvatarUrl>
<Sponsor>bwtech@UMBC</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 30 Apr 2014 09:20:47 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="44012" important="false" status="posted" url="https://my3.my.umbc.edu/posts/44012">
<Title>Students More Accepting of Using Clickers for Exams</Title>
<Tagline>2nd Clicker Pilot Continues Comparison with Scantron Testing</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <div>To <a href="http://my.umbc.edu/groups/doit/news/37747" rel="nofollow external" class="bo">continue its evaluation</a> of clickers as a possible alternative to scantron “bubble sheet” <span>assessments, DoIT again partnered with Dr. Tamara Mendelson from Biology in a pilot this </span><span>semester using the <a href="http://www.tritondatacollectionsystem.com/" rel="nofollow external" class="bo">Triton Data Collection System (DCS)</a> by Turning Technologies (TT). </span><span>Compared to Mendelson’s Fall 2013 pilot in the much larger Biology 142 (300+ students), this </span><span>semester’s pilot is running in her BIOL 481/681 “Advanced Topics in Evolutionary Biology,” a </span><span>class of 26 students.</span>
    </div>
    <div><br></div>
    <div>Also, while students in the BIOL 142 (Fall 2013) pilot were generally supportive of the clickers <span>for short (1-3 question) quizzes, a <a href="http://my.umbc.edu/groups/doit/media/8964" rel="nofollow external" class="bo">Nov. 22 Brown Bag demo</a> showed they were much less </span><span>willing to use clickers for mid-term and final exams. A key issue may have been one of the pilot </span><span>conditions: deliberately NOT using them for high-stakes assessments. As a result, students may </span><span>not have been fully prepared for how to use them on longer tests and exams.</span>
    </div>
    <div><br></div>
    <div>By contrast, the BIOL 481 (Spring 2014) pilot used the same NXT clickers for longer (8-10 <span>question), in-class quizzes. Mendelson enabled (and encouraged) the <a href="https://www.turningtechnologies.com/self-paced-training" rel="nofollow external" class="bo">self-paced polling</a> feature </span><span>which students used for multiple quizzes every class, as well as on the mid-term exam. She is </span><span>also planning to use these same clickers to implement the final exam. </span>
    </div>
    <div><br></div>
    <div>DoIT staff recently met with Mendelson and her students for an informal discussion about their <span>experiences so far. </span>
    </div>
    <div><br></div>
    <div>Based on an informal survey in class, over 50% of students preferred clickers over scantrons for <span>taking exams, 38% preferred scantrons over clickers and the rest 12% were neutral. Some of the </span><span>overall feedback that we received regarding using clickers for exams and quizzes included the </span><span>following:</span>
    </div>
    <div><br></div>
    <blockquote><div>“I liked taking the exam on the clickers because we had our own exam booklet in front of <span>us and could go at our own pace. I also liked getting my grade back right away”;</span>
    </div></blockquote>
    <div><br></div>
    <blockquote><div>“As a new technology for test taking, I think these clickers were fabulous. My only <span>suggestion would be to make logging in more seamless/secure. While minor problems were </span><span>easily resolved in a small classroom setting, it would be incredibly frustrating in a huge </span><span>lecture hall”;</span>
    </div></blockquote>
    <div><br></div>
    <blockquote><div>“Clickers are much better than scatrons. You can change your answer and not worry about <span>erasure smudges messing with the scantron reading and outputting the wrong grade”;</span>
    </div></blockquote>
    <div><br></div>
    <blockquote><div>“Using clickers would cut down on paper usage, which is a plus”;</div></blockquote>
    <div><br></div>
    <blockquote><div>“I prefer scantrons even though the clickers work pretty well, security and accessibility <span>still seems like a concern, especially considering the number of times people have issues </span><span>signing in”.</span>
    </div></blockquote>
    <div><br></div>
    <div>Overall most students seemed accepting of clickers as an alternate to taking exams using <span>scantrons. Those that </span>weren't<span> comfortable said this was because they did not have all their answers right in front of them. They said that they would prefer having a hard copy of their </span><span>answers so that they can make marks and comments on the answer sheet instead of scrolling </span><span>through answers on the clicker. They were also afraid their clicker would have technical issues </span><span>during an exam.</span>
    </div>
    <div><br></div>
    <div>One key technical issue is students having to repeatedly login between quizzes. Working with <span>TT, DoIT identified the issue, but not until after the mid-term was over. Still, Mendelson says </span><span>she prefers clickers over scantrons “because I can upload grades immediately and see which </span><span>questions are difficult and which are easy, which students are struggling, etc., in very nice </span><span>histograms.”</span>
    </div>
    <div><br></div>
    <div>Currently, DoIT is reviewing our pilot experience with Turning Technologies and offering <span>suggestions for improving the Triton system so students and faculty are comfortable using </span><span>clickers as an alternative to scantrons on any kind of assessment. However, a key feature is self-</span><span>paced polling, which is not available with the current clickers most students own. DoIT has a </span><span>small set of 100 NXT clickers that support self-paced polling and is willing to extend the </span><span>pilot to other faculty interested in trying them out. For more information, contact John Fritz at </span><span><a href="mailto:fritz@umbc.edu">fritz@umbc.edu</a>.</span>
    </div>
    </div>
]]>
</Body>
<Summary>To continue its evaluation of clickers as a possible alternative to scantron “bubble sheet” assessments, DoIT again partnered with Dr. Tamara Mendelson from Biology in a pilot this semester using...</Summary>
<Website>http://www.umbc.edu/clickers</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/44012/guest@my.umbc.edu/24049770b105972ae2ae2377fc6b3888/api/pixel</TrackingUrl>
<Group token="doit">Division of Information Technology (DoIT)</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/doit</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/xsmall.png?1727453227</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/original.JPG?1727453227</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/xxlarge.png?1727453227</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/xlarge.png?1727453227</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/large.png?1727453227</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/medium.png?1727453227</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/small.png?1727453227</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/xsmall.png?1727453227</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/xxsmall.png?1727453227</AvatarUrl>
<Sponsor>Division of Information Technology</Sponsor>
<PawCount>2</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 30 Apr 2014 09:11:19 -0400</PostedAt>
<EditAt>Wed, 30 Apr 2014 12:49:33 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="44116" important="false" status="posted" url="https://my3.my.umbc.edu/posts/44116">
<Title>Desktop Wallpaper Calendars: May 2014</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>We always try our best to challenge your artistic abilities and produce some interesting, beautiful and creative artwork. And as designers we usually turn to different sources of inspiration. As a matter of fact, we’ve discovered the best one—<strong>desktop wallpapers</strong> that are a little more distinctive than the usual crowd. This creativity mission <a href="http://www.smashingmagazine.com/tag/wallpapers/" rel="nofollow external" class="bo">has been going on for six years now</a>, and we are very thankful to all designers who have contributed and are still diligently contributing each month.</p>
    <p>This post features free desktop wallpapers created by artists across the globe for May 2014. Both versions with a calendar and without a calendar can be downloaded for free. It’s time to freshen up your wallpaper!</p>
    <p>Please note that:</p>
    <ul>
    <li>All <strong>images can be clicked on</strong> and lead to the preview of the wallpaper,</li>
    <li>You can <a href="http://www.smashingmagazine.com/2008/03/19/desktop-wallpaper-calendar-join-in/" rel="nofollow external" class="bo">feature your work in our magazine</a> by taking part in our Desktop Wallpaper Calendars series. We are regularly looking for creative designers and artists to be featured on Smashing Magazine. Are you one of them?</li>
    </ul>
    <h3>Beautiful Things</h3>
    <p>Designed by <a href="http://www.doud.be" rel="nofollow external" class="bo">Elise Vanoorbeek</a> from Belgium.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/may-14-beautiful-things-full.jpg" title="Beautiful Things" rel="nofollow external" class="bo"><img width="500" height="281" alt="Beautiful Things" src="http://www.smashingmagazine.com/wp-content/uploads/2014/04/beautiful-things.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://www.smashingmagazine.com/wp-content/uploads/2014/04/beautiful-things.jpg" title="Beautiful Things - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/cal/may-14-beautiful-things-cal-1280x720.jpg" title="Beautiful Things - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/cal/may-14-beautiful-things-cal-1280x800.jpg" title="Beautiful Things - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/cal/may-14-beautiful-things-cal-1280x960.jpg" title="Beautiful Things - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/cal/may-14-beautiful-things-cal-1280x1024.jpg" title="Beautiful Things - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/cal/may-14-beautiful-things-cal-1440x1050.jpg" title="Beautiful Things - 1440x1050" rel="nofollow external" class="bo">1440×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/cal/may-14-beautiful-things-cal-1440x900.jpg" title="Beautiful Things - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/cal/may-14-beautiful-things-cal-1680x1050.jpg" title="Beautiful Things - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/cal/may-14-beautiful-things-cal-1680x1200.jpg" title="Beautiful Things - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/cal/may-14-beautiful-things-cal-1920x1080.jpg" title="Beautiful Things - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/cal/may-14-beautiful-things-cal-1920x1200.jpg" title="Beautiful Things - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/cal/may-14-beautiful-things-cal-2560x1440.jpg" title="Beautiful Things - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/nocal/may-14-beautiful-things-nocal-1280x720.jpg" title="Beautiful Things - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/nocal/may-14-beautiful-things-nocal-1280x800.jpg" title="Beautiful Things - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/nocal/may-14-beautiful-things-nocal-1280x960.jpg" title="Beautiful Things - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/nocal/may-14-beautiful-things-nocal-1280x1024.jpg" title="Beautiful Things - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/nocal/may-14-beautiful-things-nocal-1440x1050.jpg" title="Beautiful Things - 1440x1050" rel="nofollow external" class="bo">1440×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/nocal/may-14-beautiful-things-nocal-1440x900.jpg" title="Beautiful Things - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/nocal/may-14-beautiful-things-nocal-1680x1050.jpg" title="Beautiful Things - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/nocal/may-14-beautiful-things-nocal-1680x1200.jpg" title="Beautiful Things - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/nocal/may-14-beautiful-things-nocal-1920x1080.jpg" title="Beautiful Things - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/nocal/may-14-beautiful-things-nocal-1920x1200.jpg" title="Beautiful Things - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/beautiful-things/nocal/may-14-beautiful-things-nocal-2560x1440.jpg" title="Beautiful Things - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Hot Air Balloon Ride</h3>
    <p>“Spring is the perfect time to take a ride in a hot air balloon.” — Designed by <a href="http://www.marinadesign.net" rel="nofollow external" class="bo">Marina Eyl</a> from Pennsylvania, USA.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/may-14-hot-air-balloon-ride-full.jpg" title="Hot Air Balloon Ride" rel="nofollow external" class="bo"><img width="500" height="281" alt="Hot Air Balloon Ride" src="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/may-14-hot-air-balloon-ride-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/may-14-hot-air-balloon-ride-preview.jpg" title="Hot Air Balloon Ride - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/cal/may-14-hot-air-balloon-ride-cal-1024x768.jpg" title="Hot Air Balloon Ride - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/cal/may-14-hot-air-balloon-ride-cal-1280x1024.jpg" title="Hot Air Balloon Ride - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/cal/may-14-hot-air-balloon-ride-cal-1680x1050.jpg" title="Hot Air Balloon Ride - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/cal/may-14-hot-air-balloon-ride-cal-1680x1200.jpg" title="Hot Air Balloon Ride - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/cal/may-14-hot-air-balloon-ride-cal-1920x1080.jpg" title="Hot Air Balloon Ride - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/nocal/may-14-hot-air-balloon-ride-nocal-1024x768.jpg" title="Hot Air Balloon Ride - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/nocal/may-14-hot-air-balloon-ride-nocal-1280x1024.jpg" title="Hot Air Balloon Ride - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/nocal/may-14-hot-air-balloon-ride-nocal-1680x1050.jpg" title="Hot Air Balloon Ride - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/nocal/may-14-hot-air-balloon-ride-nocal-1680x1200.jpg" title="Hot Air Balloon Ride - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hot-air-balloon-ride/nocal/may-14-hot-air-balloon-ride-nocal-1920x1080.jpg" title="Hot Air Balloon Ride - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>    </li>
    </ul>
    <h3>Swimming In a Fishbowl, Year After Year</h3>
    <p>“Here is my cartoonish adaptation of a line from a PinkFloyd balad – an illustration for a month which, where I come from, is considered to be the month of love.” — Designed by <a href="http://cz.linkedin.com/pub/katerina-tuskova/66/97/415" rel="nofollow external" class="bo">Katerina Tuskova</a> from the Czech Republic.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/may-14-fishbowl-full.png" title="Fishbowl" rel="nofollow external" class="bo"><img width="500" height="281" alt="Fishbowl" src="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/may-14-fishbowl-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/may-14-fishbowl-preview.png" title="Fishbowl - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/cal/may-14-fishbowl-cal-1024x768.png" title="Fishbowl - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/cal/may-14-fishbowl-cal-1440x900.png" title="Fishbowl - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/cal/may-14-fishbowl-cal-1920x1080.png" title="Fishbowl - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/cal/may-14-fishbowl-cal-1920x1200.png" title="Fishbowl - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/cal/may-14-fishbowl-cal-2560x1440.png" title="Fishbowl - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/cal/may-14-fishbowl-cal-640x960.png" title="Fishbowl - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/cal/may-14-fishbowl-cal-640x1136.png" title="Fishbowl - 640x1136" rel="nofollow external" class="bo">640×1136</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/cal/may-14-fishbowl-cal-480x800.png" title="Fishbowl - 480x800" rel="nofollow external" class="bo">480×800</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/nocal/may-14-fishbowl-nocal-1024x768.png" title="Fishbowl - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/nocal/may-14-fishbowl-nocal-1440x900.png" title="Fishbowl - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/nocal/may-14-fishbowl-nocal-1920x1080.png" title="Fishbowl - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/nocal/may-14-fishbowl-nocal-1920x1200.png" title="Fishbowl - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/nocal/may-14-fishbowl-nocal-2560x1440.png" title="Fishbowl - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/nocal/may-14-fishbowl-nocal-640x960.png" title="Fishbowl - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/nocal/may-14-fishbowl-nocal-640x1136.png" title="Fishbowl - 640x1136" rel="nofollow external" class="bo">640×1136</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/fishbowl/nocal/may-14-fishbowl-nocal-480x800.png" title="Fishbowl - 480x800" rel="nofollow external" class="bo">480×800</a>    </li>
    </ul>
    <h3>Colorful City</h3>
    <p>Designed by <a href="http://www.laboratoriocreativo.ro" rel="nofollow external" class="bo">Laboratorio Creativo</a> from Romania.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/may-14-colorful-city-full.jpg" title="Colorful City" rel="nofollow external" class="bo"><img width="500" height="281" alt="Colorful City" src="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/may-14-colorful-city-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/may-14-colorful-city-preview.jpg" title="Colorful City - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/cal/may-14-colorful-city-cal-1280x800.jpg" title="Colorful City - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/cal/may-14-colorful-city-cal-1440x900.jpg" title="Colorful City - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/cal/may-14-colorful-city-cal-1680x1050.jpg" title="Colorful City - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/cal/may-14-colorful-city-cal-1920x1200.jpg" title="Colorful City - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/cal/may-14-colorful-city-cal-1600x1000.jpg" title="Colorful City - 1600x1000" rel="nofollow external" class="bo">1600×1000</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/cal/may-14-colorful-city-cal-1024x640.jpg" title="Colorful City - 1024x640" rel="nofollow external" class="bo">1024×640</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/cal/may-14-colorful-city-cal-2560x1600.jpg" title="Colorful City - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/cal/may-14-colorful-city-cal-2880x1800.jpg" title="Colorful City - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/nocal/may-14-colorful-city-nocal-1280x800.jpg" title="Colorful City - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/nocal/may-14-colorful-city-nocal-1440x900.jpg" title="Colorful City - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/nocal/may-14-colorful-city-nocal-1680x1050.jpg" title="Colorful City - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/nocal/may-14-colorful-city-nocal-1920x1200.jpg" title="Colorful City - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/nocal/may-14-colorful-city-nocal-1600x1000.jpg" title="Colorful City - 1600x1000" rel="nofollow external" class="bo">1600×1000</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/nocal/may-14-colorful-city-nocal-1024x640.jpg" title="Colorful City - 1024x640" rel="nofollow external" class="bo">1024×640</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/nocal/may-14-colorful-city-nocal-2560x1600.jpg" title="Colorful City - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/colorful-city/nocal/may-14-colorful-city-nocal-2880x1800.jpg" title="Colorful City - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    </ul>
    <h3>May Your Dreams Come True</h3>
    <p>“Enjoy the sunny days of May &amp; may all your dreams come true.” — Designed by <a href="http://www.webolution.gr" rel="nofollow external" class="bo">WebOlution</a> from Greece.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/may-14-may-your-dreams-come-true-full.jpg" title="May your Dreams come True" rel="nofollow external" class="bo"><img width="500" height="281" alt="May your Dreams come True" src="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/may-14-may-your-dreams-come-true-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/may-14-may-your-dreams-come-true-preview.jpg" title="May your Dreams come True - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/cal/may-14-may-your-dreams-come-true-cal-1024x1024.jpg" title="May your Dreams come True - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/cal/may-14-may-your-dreams-come-true-cal-1280x800.jpg" title="May your Dreams come True - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/cal/may-14-may-your-dreams-come-true-cal-1280x1024.jpg" title="May your Dreams come True - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/cal/may-14-may-your-dreams-come-true-cal-1680x1050.jpg" title="May your Dreams come True - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/cal/may-14-may-your-dreams-come-true-cal-1920x1080.jpg" title="May your Dreams come True - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/cal/may-14-may-your-dreams-come-true-cal-1920x1200.jpg" title="May your Dreams come True - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/cal/may-14-may-your-dreams-come-true-cal-2560x1440.jpg" title="May your Dreams come True - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/cal/may-14-may-your-dreams-come-true-cal-640x960.jpg" title="May your Dreams come True - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/cal/may-14-may-your-dreams-come-true-cal-1366x768.jpg" title="May your Dreams come True - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/cal/may-14-may-your-dreams-come-true-cal-2560x1600.jpg" title="May your Dreams come True - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/nocal/may-14-may-your-dreams-come-true-nocal-1024x1024.jpg" title="May your Dreams come True - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/nocal/may-14-may-your-dreams-come-true-nocal-1280x800.jpg" title="May your Dreams come True - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/nocal/may-14-may-your-dreams-come-true-nocal-1280x1024.jpg" title="May your Dreams come True - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/nocal/may-14-may-your-dreams-come-true-nocal-1680x1050.jpg" title="May your Dreams come True - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/nocal/may-14-may-your-dreams-come-true-nocal-1920x1080.jpg" title="May your Dreams come True - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/nocal/may-14-may-your-dreams-come-true-nocal-1920x1200.jpg" title="May your Dreams come True - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/nocal/may-14-may-your-dreams-come-true-nocal-2560x1440.jpg" title="May your Dreams come True - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/nocal/may-14-may-your-dreams-come-true-nocal-640x960.jpg" title="May your Dreams come True - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/nocal/may-14-may-your-dreams-come-true-nocal-1366x768.jpg" title="May your Dreams come True - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-dreams-come-true/nocal/may-14-may-your-dreams-come-true-nocal-2560x1600.jpg" title="May your Dreams come True - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>    </li>
    </ul>
    <h3>MonkGolfier</h3>
    <p>“It’s our first attempt; we recently changed our workplace and now we’re in a windy place, so we like the idea of flying in the air, somehow.” — Designed by <a href="http://www.wearemonk.com" rel="nofollow external" class="bo">Monk Software</a> from Italy.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/may-14-monkgolfier-full.png" title="MonkGolfier" rel="nofollow external" class="bo"><img width="500" height="281" alt="MonkGolfier" src="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/may-14-monkgolfier-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/may-14-monkgolfier-preview.png" title="MonkGolfier - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/cal/may-14-monkgolfier-cal-320x480.png" title="MonkGolfier - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/cal/may-14-monkgolfier-cal-1024x768.png" title="MonkGolfier - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/cal/may-14-monkgolfier-cal-1280x800.png" title="MonkGolfier - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/cal/may-14-monkgolfier-cal-1280x1024.png" title="MonkGolfier - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/cal/may-14-monkgolfier-cal-1920x1080.png" title="MonkGolfier - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/cal/may-14-monkgolfier-cal-2560x1440.png" title="MonkGolfier - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/cal/may-14-monkgolfier-cal-960x640.png" title="MonkGolfier - 960x640" rel="nofollow external" class="bo">960×640</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/nocal/may-14-monkgolfier-nocal-320x480.png" title="MonkGolfier - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/nocal/may-14-monkgolfier-nocal-1024x768.png" title="MonkGolfier - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/nocal/may-14-monkgolfier-nocal-1280x800.png" title="MonkGolfier - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/nocal/may-14-monkgolfier-nocal-1280x1024.png" title="MonkGolfier - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/nocal/may-14-monkgolfier-nocal-1920x1080.png" title="MonkGolfier - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/nocal/may-14-monkgolfier-nocal-2560x1440.png" title="MonkGolfier - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/monkgolfier/nocal/may-14-monkgolfier-nocal-960x640.png" title="MonkGolfier - 960x640" rel="nofollow external" class="bo">960×640</a>    </li>
    </ul>
    <h3>Sour Cherry</h3>
    <p>“May comes with cherries! And, yeah, I was listening to a song called ‘Sour Cherry’. Also, it was a good excuse to improve my drawing abilities with my brand new pen tablet :)” — Designed by <a href="https://www.behance.net/veinerve" rel="nofollow external" class="bo">Renata Biondi</a> from Italy.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/may-14-sour-cherry-full.jpg" title="Sour Cherry" rel="nofollow external" class="bo"><img width="500" height="281" alt="Sour Cherry" src="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/may-14-sour-cherry-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/may-14-sour-cherry-preview.jpg" title="Sour Cherry - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/cal/may-14-sour-cherry-cal-320x480.jpg" title="Sour Cherry - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/cal/may-14-sour-cherry-cal-640x480.jpg" title="Sour Cherry - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/cal/may-14-sour-cherry-cal-800x480.jpg" title="Sour Cherry - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/cal/may-14-sour-cherry-cal-1024x1024.jpg" title="Sour Cherry - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/cal/may-14-sour-cherry-cal-1280x800.jpg" title="Sour Cherry - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/cal/may-14-sour-cherry-cal-1400x1050.jpg" title="Sour Cherry - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/cal/may-14-sour-cherry-cal-1440x900.jpg" title="Sour Cherry - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/cal/may-14-sour-cherry-cal-1680x1050.jpg" title="Sour Cherry - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/cal/may-14-sour-cherry-cal-1920x1200.jpg" title="Sour Cherry - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/cal/may-14-sour-cherry-cal-2560x1440.jpg" title="Sour Cherry - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/nocal/may-14-sour-cherry-nocal-320x480.jpg" title="Sour Cherry - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/nocal/may-14-sour-cherry-nocal-640x480.jpg" title="Sour Cherry - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/nocal/may-14-sour-cherry-nocal-800x480.jpg" title="Sour Cherry - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/nocal/may-14-sour-cherry-nocal-1024x1024.jpg" title="Sour Cherry - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/nocal/may-14-sour-cherry-nocal-1280x800.jpg" title="Sour Cherry - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/nocal/may-14-sour-cherry-nocal-1400x1050.jpg" title="Sour Cherry - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/nocal/may-14-sour-cherry-nocal-1440x900.jpg" title="Sour Cherry - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/nocal/may-14-sour-cherry-nocal-1680x1050.jpg" title="Sour Cherry - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/nocal/may-14-sour-cherry-nocal-1920x1200.jpg" title="Sour Cherry - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sour-cherry/nocal/may-14-sour-cherry-nocal-2560x1440.jpg" title="Sour Cherry - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Ticklish Tongue</h3>
    <p>“Don’t let the ants take away your days!” — Designed by <a href="http://ricardogimenes.com/" rel="nofollow external" class="bo">Ricardo Gimenes</a> from Brazil.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/may-14-ticklish-tongue-full.png" title="Ticklish Tongue" rel="nofollow external" class="bo"><img width="500" height="281" alt="Ticklish Tongue" src="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/may-14-ticklish-tongue-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/may-14-ticklish-tongue-preview.png" title="Ticklish Tongue - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-320x480.png" title="Ticklish Tongue - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1024x768.png" title="Ticklish Tongue - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1024x1024.png" title="Ticklish Tongue - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1280x800.png" title="Ticklish Tongue - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1280x960.png" title="Ticklish Tongue - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1280x1024.png" title="Ticklish Tongue - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1400x1050.png" title="Ticklish Tongue - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1440x900.png" title="Ticklish Tongue - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1600x1200.png" title="Ticklish Tongue - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1680x1050.png" title="Ticklish Tongue - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1680x1200.png" title="Ticklish Tongue - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1920x1080.png" title="Ticklish Tongue - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1920x1200.png" title="Ticklish Tongue - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1920x1440.png" title="Ticklish Tongue - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-2560x1440.png" title="Ticklish Tongue - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-640x960.png" title="Ticklish Tongue - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1366x768.png" title="Ticklish Tongue - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-1600x1050.png" title="Ticklish Tongue - 1600x1050" rel="nofollow external" class="bo">1600×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/cal/may-14-ticklish-tongue-cal-2880x1800.png" title="Ticklish Tongue - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-320x480.png" title="Ticklish Tongue - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1024x768.png" title="Ticklish Tongue - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1024x1024.png" title="Ticklish Tongue - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1280x800.png" title="Ticklish Tongue - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1280x960.png" title="Ticklish Tongue - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1280x1024.png" title="Ticklish Tongue - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1400x1050.png" title="Ticklish Tongue - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1440x900.png" title="Ticklish Tongue - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1600x1200.png" title="Ticklish Tongue - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1680x1050.png" title="Ticklish Tongue - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1680x1200.png" title="Ticklish Tongue - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1920x1080.png" title="Ticklish Tongue - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1920x1200.png" title="Ticklish Tongue - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1920x1440.png" title="Ticklish Tongue - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-2560x1440.png" title="Ticklish Tongue - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-640x960.png" title="Ticklish Tongue - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1366x768.png" title="Ticklish Tongue - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-1600x1050.png" title="Ticklish Tongue - 1600x1050" rel="nofollow external" class="bo">1600×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ticklish-tongue/nocal/may-14-ticklish-tongue-nocal-2880x1800.png" title="Ticklish Tongue - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    </ul>
    <h3>Alternative Universe</h3>
    <p>“I was inspired by space, an exposition at the Centre Pompidou and some work on <a href="http://blog.iso50.com/" rel="nofollow external" class="bo">ISO50</a>.” — Designed by <a href="http://yakim.nl" rel="nofollow external" class="bo">Yakim van Zuijlen</a> from the Netherlands.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/may-14-inspiration-full.png" title="Alternative Universe" rel="nofollow external" class="bo"><img width="500" height="281" alt="Alternative Universe" src="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/may-14-inspiration-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/may-14-inspiration-preview.png" title="Alternative Universe - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1152x864.png" title="Alternative Universe - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1280x720.png" title="Alternative Universe - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1280x800.png" title="Alternative Universe - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1280x960.png" title="Alternative Universe - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1280x1025.png" title="Alternative Universe - 1280x1025" rel="nofollow external" class="bo">1280×1025</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1400x1050.png" title="Alternative Universe - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1440x900.png" title="Alternative Universe - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1600x1200.png" title="Alternative Universe - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1680x1050.png" title="Alternative Universe - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1680x1200.png" title="Alternative Universe - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1920x1080.png" title="Alternative Universe - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1920x1200.png" title="Alternative Universe - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-1920x1440.png" title="Alternative Universe - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/cal/may-14-inspiration-cal-2560x1440.png" title="Alternative Universe - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1152x864.png" title="Alternative Universe - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1280x720.png" title="Alternative Universe - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1280x800.png" title="Alternative Universe - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1280x960.png" title="Alternative Universe - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1280x1025.png" title="Alternative Universe - 1280x1025" rel="nofollow external" class="bo">1280×1025</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1400x1050.png" title="Alternative Universe - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1440x900.png" title="Alternative Universe - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1600x1200.png" title="Alternative Universe - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1680x1050.png" title="Alternative Universe - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1680x1200.png" title="Alternative Universe - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1920x1080.png" title="Alternative Universe - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1920x1200.png" title="Alternative Universe - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-1920x1440.png" title="Alternative Universe - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/inspiration/nocal/may-14-inspiration-nocal-2560x1440.png" title="Alternative Universe - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>A Maternal Soft Drink</h3>
    <p>“May is the mothers’ month, so I dedicate this calendar to the soft drink’s mother (and of course to my mother) because they always know what we need!” — Designed by <a href="http://www.silocreativo.com/en" rel="nofollow external" class="bo">Verónica Valenzuela</a> from Spain.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/may-14-a-maternal-soft-drink-full.jpg" title="A maternal soft drink" rel="nofollow external" class="bo"><img width="500" height="281" alt="A maternal soft drink" src="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/may-14-a-maternal-soft-drink-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/may-14-a-maternal-soft-drink-preview.jpg" title="A maternal soft drink - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/cal/may-14-a-maternal-soft-drink-cal-800x480.jpg" title="A maternal soft drink - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/cal/may-14-a-maternal-soft-drink-cal-1024x768.jpg" title="A maternal soft drink - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/cal/may-14-a-maternal-soft-drink-cal-1152x864.jpg" title="A maternal soft drink - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/cal/may-14-a-maternal-soft-drink-cal-1280x800.jpg" title="A maternal soft drink - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/cal/may-14-a-maternal-soft-drink-cal-1280x960.jpg" title="A maternal soft drink - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/cal/may-14-a-maternal-soft-drink-cal-1440x900.jpg" title="A maternal soft drink - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/cal/may-14-a-maternal-soft-drink-cal-1680x1200.jpg" title="A maternal soft drink - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/cal/may-14-a-maternal-soft-drink-cal-1920x1080.jpg" title="A maternal soft drink - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/cal/may-14-a-maternal-soft-drink-cal-2560x1440.jpg" title="A maternal soft drink - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/nocal/may-14-a-maternal-soft-drink-nocal-800x480.jpg" title="A maternal soft drink - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/nocal/may-14-a-maternal-soft-drink-nocal-1024x768.jpg" title="A maternal soft drink - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/nocal/may-14-a-maternal-soft-drink-nocal-1152x864.jpg" title="A maternal soft drink - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/nocal/may-14-a-maternal-soft-drink-nocal-1280x800.jpg" title="A maternal soft drink - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/nocal/may-14-a-maternal-soft-drink-nocal-1280x960.jpg" title="A maternal soft drink - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/nocal/may-14-a-maternal-soft-drink-nocal-1440x900.jpg" title="A maternal soft drink - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/nocal/may-14-a-maternal-soft-drink-nocal-1680x1200.jpg" title="A maternal soft drink - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/nocal/may-14-a-maternal-soft-drink-nocal-1920x1080.jpg" title="A maternal soft drink - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/a-maternal-soft-drink/nocal/may-14-a-maternal-soft-drink-nocal-2560x1440.jpg" title="A maternal soft drink - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Everyday Is Chicken Rice Day</h3>
    <p>“I’m always craving for a delicious plate of Hainanese chicken rice. So, with the dish on my screen, hopefully it can lessen my craving. :D Enjoy!” — Designed by <a href="http://www.morningmobi.com/" rel="nofollow external" class="bo">Lew Su Ann</a> from Brunei.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/may-14-everyday-is-chicken-rice-day-full.jpg" title="Everyday is Chicken Rice Day" rel="nofollow external" class="bo"><img width="500" height="281" alt="Everyday is Chicken Rice Day" src="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/may-14-everyday-is-chicken-rice-day-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/may-14-everyday-is-chicken-rice-day-preview.jpg" title="Everyday is Chicken Rice Day - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-640x480.jpg" title="Everyday is Chicken Rice Day - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-800x600.jpg" title="Everyday is Chicken Rice Day - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1024x768.jpg" title="Everyday is Chicken Rice Day - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1152x864.jpg" title="Everyday is Chicken Rice Day - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1280x720.jpg" title="Everyday is Chicken Rice Day - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1280x800.jpg" title="Everyday is Chicken Rice Day - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1280x960.jpg" title="Everyday is Chicken Rice Day - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1400x1050.jpg" title="Everyday is Chicken Rice Day - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1440x900.jpg" title="Everyday is Chicken Rice Day - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1600x1200.jpg" title="Everyday is Chicken Rice Day - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1680x1050.jpg" title="Everyday is Chicken Rice Day - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1920x1080.jpg" title="Everyday is Chicken Rice Day - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1920x1200.jpg" title="Everyday is Chicken Rice Day - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1920x1440.jpg" title="Everyday is Chicken Rice Day - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/cal/may-14-everyday-is-chicken-rice-day-cal-1366x768.jpg" title="Everyday is Chicken Rice Day - 1366x768" rel="nofollow external" class="bo">1366×768</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-640x480.jpg" title="Everyday is Chicken Rice Day - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-800x600.jpg" title="Everyday is Chicken Rice Day - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1024x768.jpg" title="Everyday is Chicken Rice Day - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1152x864.jpg" title="Everyday is Chicken Rice Day - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1280x720.jpg" title="Everyday is Chicken Rice Day - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1280x800.jpg" title="Everyday is Chicken Rice Day - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1280x960.jpg" title="Everyday is Chicken Rice Day - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1400x1050.jpg" title="Everyday is Chicken Rice Day - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1440x900.jpg" title="Everyday is Chicken Rice Day - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1600x1200.jpg" title="Everyday is Chicken Rice Day - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1680x1050.jpg" title="Everyday is Chicken Rice Day - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1920x1080.jpg" title="Everyday is Chicken Rice Day - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1920x1200.jpg" title="Everyday is Chicken Rice Day - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1920x1440.jpg" title="Everyday is Chicken Rice Day - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/everyday-is-chicken-rice-day/nocal/may-14-everyday-is-chicken-rice-day-nocal-1366x768.jpg" title="Everyday is Chicken Rice Day - 1366x768" rel="nofollow external" class="bo">1366×768</a>    </li>
    </ul>
    <h3>Sweet Lily Of The Valley</h3>
    <p>“The ‘lily of the valley’ came earlier this year. In France, we celebrate the month of May with this plant.” — Designed by <a href="http://www.phbroc.fr" rel="nofollow external" class="bo">Philippe Brouard</a> from France.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/may-14-lily-of-the-valley-full.jpg" title="Sweet lily-of-the-valley" rel="nofollow external" class="bo"><img width="500" height="281" alt="Sweet lily-of-the-valley" src="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/may-14-lily-of-the-valley-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/may-14-lily-of-the-valley-preview.jpg" title="Sweet lily-of-the-valley - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/cal/may-14-lily-of-the-valley-cal-800x480.jpg" title="Sweet lily-of-the-valley - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/cal/may-14-lily-of-the-valley-cal-1024x768.jpg" title="Sweet lily-of-the-valley - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/cal/may-14-lily-of-the-valley-cal-1024x1024.jpg" title="Sweet lily-of-the-valley - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/cal/may-14-lily-of-the-valley-cal-1280x720.jpg" title="Sweet lily-of-the-valley - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/cal/may-14-lily-of-the-valley-cal-1280x1024.jpg" title="Sweet lily-of-the-valley - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/cal/may-14-lily-of-the-valley-cal-1440x900.jpg" title="Sweet lily-of-the-valley - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/cal/may-14-lily-of-the-valley-cal-1920x1080.jpg" title="Sweet lily-of-the-valley - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/cal/may-14-lily-of-the-valley-cal-1920x1440.jpg" title="Sweet lily-of-the-valley - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/cal/may-14-lily-of-the-valley-cal-2560x1440.jpg" title="Sweet lily-of-the-valley - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/nocal/may-14-lily-of-the-valley-nocal-800x480.jpg" title="Sweet lily-of-the-valley - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/nocal/may-14-lily-of-the-valley-nocal-1024x768.jpg" title="Sweet lily-of-the-valley - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/nocal/may-14-lily-of-the-valley-nocal-1024x1024.jpg" title="Sweet lily-of-the-valley - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/nocal/may-14-lily-of-the-valley-nocal-1280x720.jpg" title="Sweet lily-of-the-valley - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/nocal/may-14-lily-of-the-valley-nocal-1280x1024.jpg" title="Sweet lily-of-the-valley - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/nocal/may-14-lily-of-the-valley-nocal-1440x900.jpg" title="Sweet lily-of-the-valley - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/nocal/may-14-lily-of-the-valley-nocal-1920x1080.jpg" title="Sweet lily-of-the-valley - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/nocal/may-14-lily-of-the-valley-nocal-1920x1440.jpg" title="Sweet lily-of-the-valley - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/lily-of-the-valley/nocal/may-14-lily-of-the-valley-nocal-2560x1440.jpg" title="Sweet lily-of-the-valley - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Birds Of May</h3>
    <p>“A little known “holiday” on May 4th known as “Bird Day”. It is the first holiday in The United States celebrating birds. Hurray for birds!” — Designed by <a href="http://www.iwantclarity.com" rel="nofollow external" class="bo">Clarity Creative Group</a> from Orlando, FL.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/may-14-bird-day-full.png" title="Birds of May" rel="nofollow external" class="bo"><img width="500" height="281" alt="Birds of May" src="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/may-14-bird-day-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/may-14-bird-day-preview.jpg" title="Birds of May - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-320x480.png" title="Birds of May - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-640x480.png" title="Birds of May - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-640x960.png" title="Birds of May - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-640x1136.png" title="Birds of May - 640x1136" rel="nofollow external" class="bo">640×1136</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-800x480.png" title="Birds of May - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-800x600.png" title="Birds of May - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1024x768.png" title="Birds of May - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1024x1024.png" title="Birds of May - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1152x864.png" title="Birds of May - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1280x720.png" title="Birds of May - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1280x800.png" title="Birds of May - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1280x960.png" title="Birds of May - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1280x1024.png" title="Birds of May - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1400x1050.png" title="Birds of May - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1440x900.png" title="Birds of May - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1600x1200.png" title="Birds of May - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1680x1050.png" title="Birds of May - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1680x1200.png" title="Birds of May - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1920x1080.png" title="Birds of May - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1920x1200.png" title="Birds of May - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-1920x1440.png" title="Birds of May - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/cal/may-14-bird-day-cal-2560x1440.png" title="Birds of May - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-320x480.png" title="Birds of May - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-640x480.png" title="Birds of May - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-640x960.png" title="Birds of May - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-640x1136.png" title="Birds of May - 640x1136" rel="nofollow external" class="bo">640×1136</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-800x480.png" title="Birds of May - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-800x600.png" title="Birds of May - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1024x768.png" title="Birds of May - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1024x1024.png" title="Birds of May - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1152x864.png" title="Birds of May - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1280x720.png" title="Birds of May - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1280x800.png" title="Birds of May - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1280x960.png" title="Birds of May - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1280x1024.png" title="Birds of May - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1400x1050.png" title="Birds of May - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1440x900.png" title="Birds of May - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1600x1200.png" title="Birds of May - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1680x1050.png" title="Birds of May - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1680x1200.png" title="Birds of May - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1920x1080.png" title="Birds of May - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1920x1200.png" title="Birds of May - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-1920x1440.png" title="Birds of May - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/bird-day/nocal/may-14-bird-day-nocal-2560x1440.png" title="Birds of May - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Spring Street</h3>
    <p>“My inspiration was that people finally get to go outside and enjoy the good weather.” — Designed by <a href="http://www.kayleealessie.nl" rel="nofollow external" class="bo">Kaylee Alessie</a> from the Netherlands.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/may-14-go-outside-full.jpg" title="Spring Street" rel="nofollow external" class="bo"><img width="500" height="281" alt="Spring Street" src="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/may-14-go-outside-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/may-14-go-outside-preview.png" title="Spring Street - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/cal/may-14-go-outside-cal-640x480.jpg" title="Spring Street - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/cal/may-14-go-outside-cal-800x600.jpg" title="Spring Street - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/cal/may-14-go-outside-cal-1280x800.jpg" title="Spring Street - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/cal/may-14-go-outside-cal-1400x1050.jpg" title="Spring Street - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/cal/may-14-go-outside-cal-1440x900.jpg" title="Spring Street - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/cal/may-14-go-outside-cal-1600x1200.jpg" title="Spring Street - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/cal/may-14-go-outside-cal-1680x1050.jpg" title="Spring Street - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/cal/may-14-go-outside-cal-1920x1200.jpg" title="Spring Street - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/cal/may-14-go-outside-cal-1920x1440.jpg" title="Spring Street - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/nocal/may-14-go-outside-nocal-640x480.jpg" title="Spring Street - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/nocal/may-14-go-outside-nocal-800x600.jpg" title="Spring Street - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/nocal/may-14-go-outside-nocal-1280x800.jpg" title="Spring Street - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/nocal/may-14-go-outside-nocal-1400x1050.jpg" title="Spring Street - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/nocal/may-14-go-outside-nocal-1440x900.jpg" title="Spring Street - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/nocal/may-14-go-outside-nocal-1600x1200.jpg" title="Spring Street - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/nocal/may-14-go-outside-nocal-1680x1050.jpg" title="Spring Street - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/nocal/may-14-go-outside-nocal-1920x1200.jpg" title="Spring Street - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/go-outside/nocal/may-14-go-outside-nocal-1920x1440.jpg" title="Spring Street - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>    </li>
    </ul>
    <h3>World’s Labor Day</h3>
    <p>“May 1st is World’s Labor Day for everyone. Even cows have the right to take a rest!” — Designed by <a href="http://www.cre8mania.com/" rel="nofollow external" class="bo">Lina Kahal</a> from Lebanon.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/may-14-worlds-labor-day-full.png" title="World's labor day" rel="nofollow external" class="bo"><img width="500" height="281" alt="World's labor day" src="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/may-14-worlds-labor-day-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/may-14-worlds-labor-day-preview.png" title="World's labor day - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-320x480.png" title="World's labor day - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-640x480.png" title="World's labor day - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-800x480.png" title="World's labor day - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-800x600.png" title="World's labor day - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1024x768.png" title="World's labor day - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1024x1024.png" title="World's labor day - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1152x864.png" title="World's labor day - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1280x720.png" title="World's labor day - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1280x800.png" title="World's labor day - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1280x960.png" title="World's labor day - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1280x1024.png" title="World's labor day - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1400x1050.png" title="World's labor day - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1440x900.png" title="World's labor day - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1600x1200.png" title="World's labor day - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1680x1050.png" title="World's labor day - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1680x1200.png" title="World's labor day - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1920x1080.png" title="World's labor day - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1920x1200.png" title="World's labor day - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-1920x1440.png" title="World's labor day - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/cal/may-14-worlds-labor-day-cal-2560x1440.png" title="World's labor day - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-320x480.png" title="World's labor day - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-640x480.png" title="World's labor day - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-800x480.png" title="World's labor day - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-800x600.png" title="World's labor day - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1024x768.png" title="World's labor day - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1024x1024.png" title="World's labor day - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1152x864.png" title="World's labor day - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1280x720.png" title="World's labor day - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1280x800.png" title="World's labor day - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1280x960.png" title="World's labor day - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1280x1024.png" title="World's labor day - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1400x1050.png" title="World's labor day - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1440x900.png" title="World's labor day - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1600x1200.png" title="World's labor day - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1680x1050.png" title="World's labor day - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1680x1200.png" title="World's labor day - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1920x1080.png" title="World's labor day - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1920x1200.png" title="World's labor day - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-1920x1440.png" title="World's labor day - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/worlds-labor-day/nocal/may-14-worlds-labor-day-nocal-2560x1440.png" title="World's labor day - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Hex</h3>
    <p>“With spring on its way there has been a lot of allergy talk around the office. One of the ways to help allergies brought up by a coworker was eating local honey since it’s made from flowers in the area. Ode de Buzz.” — Designed by <a href="http://www.corporate3design.com" rel="nofollow external" class="bo">Dylan Baumann</a> from the United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/may-14-hex-full.png" title="Hex" rel="nofollow external" class="bo"><img width="500" height="281" alt="Hex" src="http://files.smashingmagazine.com/wallpapers/may-14/hex/may-14-hex-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/may-14-hex-preview.png" title="Hex - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/cal/may-14-hex-cal-320x480.png" title="Hex - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/cal/may-14-hex-cal-640x480.png" title="Hex - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/cal/may-14-hex-cal-800x600.png" title="Hex - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/cal/may-14-hex-cal-1024x1024.png" title="Hex - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/cal/may-14-hex-cal-1280x1024.png" title="Hex - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/cal/may-14-hex-cal-1600x1200.png" title="Hex - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/cal/may-14-hex-cal-1680x1200.png" title="Hex - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/cal/may-14-hex-cal-1920x1080.png" title="Hex - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/cal/may-14-hex-cal-1920x1440.png" title="Hex - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/cal/may-14-hex-cal-2560x1440.png" title="Hex - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/nocal/may-14-hex-nocal-320x480.png" title="Hex - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/nocal/may-14-hex-nocal-640x480.png" title="Hex - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/nocal/may-14-hex-nocal-800x600.png" title="Hex - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/nocal/may-14-hex-nocal-1024x1024.png" title="Hex - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/nocal/may-14-hex-nocal-1280x1024.png" title="Hex - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/nocal/may-14-hex-nocal-1600x1200.png" title="Hex - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/nocal/may-14-hex-nocal-1680x1200.png" title="Hex - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/nocal/may-14-hex-nocal-1920x1080.png" title="Hex - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/nocal/may-14-hex-nocal-1920x1440.png" title="Hex - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/hex/nocal/may-14-hex-nocal-2560x1440.png" title="Hex - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>What’d You Do Ray?</h3>
    <p>Designed by <a href="http://www.c3design.com" rel="nofollow external" class="bo">Matt Noa</a> from the United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/may-14-whatd-you-do-ray-full.jpg" title="What'd You Do Ray?" rel="nofollow external" class="bo"><img width="500" height="281" alt="What'd You Do Ray?" src="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/may-14-whatd-you-do-ray-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/may-14-whatd-you-do-ray-preview.jpg" title="What'd You Do Ray? - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/cal/may-14-whatd-you-do-ray-cal-1024x768.jpg" title="What'd You Do Ray? - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/cal/may-14-whatd-you-do-ray-cal-1280x800.jpg" title="What'd You Do Ray? - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/cal/may-14-whatd-you-do-ray-cal-1280x1024.jpg" title="What'd You Do Ray? - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/cal/may-14-whatd-you-do-ray-cal-1440x900.jpg" title="What'd You Do Ray? - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/cal/may-14-whatd-you-do-ray-cal-1920x1080.jpg" title="What'd You Do Ray? - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/cal/may-14-whatd-you-do-ray-cal-1920x1200.jpg" title="What'd You Do Ray? - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/cal/may-14-whatd-you-do-ray-cal-2560x1440.jpg" title="What'd You Do Ray? - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/cal/may-14-whatd-you-do-ray-cal-2880x1800.jpg" title="What'd You Do Ray? - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/nocal/may-14-whatd-you-do-ray-nocal-1024x768.jpg" title="What'd You Do Ray? - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/nocal/may-14-whatd-you-do-ray-nocal-1280x800.jpg" title="What'd You Do Ray? - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/nocal/may-14-whatd-you-do-ray-nocal-1280x1024.jpg" title="What'd You Do Ray? - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/nocal/may-14-whatd-you-do-ray-nocal-1440x900.jpg" title="What'd You Do Ray? - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/nocal/may-14-whatd-you-do-ray-nocal-1920x1080.jpg" title="What'd You Do Ray? - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/nocal/may-14-whatd-you-do-ray-nocal-1920x1200.jpg" title="What'd You Do Ray? - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/nocal/may-14-whatd-you-do-ray-nocal-2560x1440.jpg" title="What'd You Do Ray? - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/whatd-you-do-ray/nocal/may-14-whatd-you-do-ray-nocal-2880x1800.jpg" title="What'd You Do Ray? - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    </ul>
    <h3>Get Out Of Your House</h3>
    <p>“We had to make it as an assignment for school.” — Designed by <a href="https://www.behance.net/mvoortwist" rel="nofollow external" class="bo">Maartje Voortwist</a> from the Netherlands.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/may-14-get-out-of-your-house-full.jpg" title="Get out of your house" rel="nofollow external" class="bo"><img width="500" height="281" alt="Get out of your house" src="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/may-14-get-out-of-your-house-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/may-14-get-out-of-your-house-preview.jpg" title="Get out of your house - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-320x480.jpg" title="Get out of your house - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-640x480.jpg" title="Get out of your house - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-800x480.jpg" title="Get out of your house - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-800x600.jpg" title="Get out of your house - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1024x768.jpg" title="Get out of your house - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1024x1024.jpg" title="Get out of your house - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1152x864.jpg" title="Get out of your house - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1280x720.jpg" title="Get out of your house - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1280x800.jpg" title="Get out of your house - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1280x960.jpg" title="Get out of your house - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1280x1024.jpg" title="Get out of your house - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1400x1050.jpg" title="Get out of your house - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1440x900.jpg" title="Get out of your house - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1600x1200.jpg" title="Get out of your house - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1680x1050.jpg" title="Get out of your house - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1680x1200.jpg" title="Get out of your house - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1920x1080.jpg" title="Get out of your house - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1920x1200.jpg" title="Get out of your house - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-1920x1440.jpg" title="Get out of your house - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/cal/may-14-get-out-of-your-house-cal-2560x1440.jpg" title="Get out of your house - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-320x480.jpg" title="Get out of your house - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-640x480.jpg" title="Get out of your house - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-800x480.jpg" title="Get out of your house - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-800x600.jpg" title="Get out of your house - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1024x768.jpg" title="Get out of your house - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1024x1024.jpg" title="Get out of your house - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1152x864.jpg" title="Get out of your house - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1280x720.jpg" title="Get out of your house - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1280x800.jpg" title="Get out of your house - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1280x960.jpg" title="Get out of your house - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1280x1024.jpg" title="Get out of your house - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1400x1050.jpg" title="Get out of your house - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1440x900.jpg" title="Get out of your house - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1600x1200.jpg" title="Get out of your house - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1680x1050.jpg" title="Get out of your house - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1680x1200.jpg" title="Get out of your house - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1920x1080.jpg" title="Get out of your house - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1920x1200.jpg" title="Get out of your house - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-1920x1440.jpg" title="Get out of your house - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/get-out-of-your-house/nocal/may-14-get-out-of-your-house-nocal-2560x1440.jpg" title="Get out of your house - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Ocean of Flowers</h3>
    <p>Designed by <a href="http://www.zitec.com" rel="nofollow external" class="bo">Adrian Limbasan</a> from Romania.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/may-14-ocean-of-flowers-full.jpg" title="Ocean of Flowers" rel="nofollow external" class="bo"><img width="500" height="281" alt="Ocean of Flowers" src="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/may-14-ocean-of-flowers-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/may-14-ocean-of-flowers-preview.jpg" title="Ocean of Flowers - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/cal/may-14-ocean-of-flowers-cal-1024x768.jpg" title="Ocean of Flowers - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/cal/may-14-ocean-of-flowers-cal-1152x864.jpg" title="Ocean of Flowers - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/cal/may-14-ocean-of-flowers-cal-1280x720.jpg" title="Ocean of Flowers - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/cal/may-14-ocean-of-flowers-cal-1280x800.jpg" title="Ocean of Flowers - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/cal/may-14-ocean-of-flowers-cal-1280x960.jpg" title="Ocean of Flowers - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/cal/may-14-ocean-of-flowers-cal-1400x1050.jpg" title="Ocean of Flowers - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/cal/may-14-ocean-of-flowers-cal-1440x900.jpg" title="Ocean of Flowers - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/cal/may-14-ocean-of-flowers-cal-1600x1200.jpg" title="Ocean of Flowers - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/cal/may-14-ocean-of-flowers-cal-1680x1050.jpg" title="Ocean of Flowers - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/cal/may-14-ocean-of-flowers-cal-1920x1080.jpg" title="Ocean of Flowers - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/cal/may-14-ocean-of-flowers-cal-1920x1200.jpg" title="Ocean of Flowers - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/cal/may-14-ocean-of-flowers-cal-1920x1440.jpg" title="Ocean of Flowers - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/nocal/may-14-ocean-of-flowers-nocal-1024x768.jpg" title="Ocean of Flowers - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/nocal/may-14-ocean-of-flowers-nocal-1152x864.jpg" title="Ocean of Flowers - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/nocal/may-14-ocean-of-flowers-nocal-1280x720.jpg" title="Ocean of Flowers - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/nocal/may-14-ocean-of-flowers-nocal-1280x800.jpg" title="Ocean of Flowers - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/nocal/may-14-ocean-of-flowers-nocal-1280x960.jpg" title="Ocean of Flowers - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/nocal/may-14-ocean-of-flowers-nocal-1400x1050.jpg" title="Ocean of Flowers - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/nocal/may-14-ocean-of-flowers-nocal-1440x900.jpg" title="Ocean of Flowers - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/nocal/may-14-ocean-of-flowers-nocal-1600x1200.jpg" title="Ocean of Flowers - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/nocal/may-14-ocean-of-flowers-nocal-1680x1050.jpg" title="Ocean of Flowers - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/nocal/may-14-ocean-of-flowers-nocal-1920x1080.jpg" title="Ocean of Flowers - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/nocal/may-14-ocean-of-flowers-nocal-1920x1200.jpg" title="Ocean of Flowers - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/ocean-of-flowers/nocal/may-14-ocean-of-flowers-nocal-1920x1440.jpg" title="Ocean of Flowers - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>    </li>
    </ul>
    <h3>May Your Month Be Merry</h3>
    <p>“I wanted to create something that reflected the warm feeling you get in May when it has finally bloomed into Spring.” — Designed by <a href="http://www.targetclickmarketing.com/" rel="nofollow external" class="bo">Jamie Gray</a> from Iowa.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/may-14-may-your-month-be-merry-full.png" title="May Your Month be Merry" rel="nofollow external" class="bo"><img width="500" height="281" alt="May Your Month be Merry" src="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/may-14-may-your-month-be-merry-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/may-14-may-your-month-be-merry-preview.png" title="May Your Month be Merry - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-640x480.png" title="May Your Month be Merry - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-800x480.png" title="May Your Month be Merry - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-800x600.png" title="May Your Month be Merry - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1024x768.png" title="May Your Month be Merry - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1024x1024.png" title="May Your Month be Merry - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1152x864.png" title="May Your Month be Merry - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1280x720.png" title="May Your Month be Merry - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1280x800.png" title="May Your Month be Merry - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1280x960.png" title="May Your Month be Merry - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1280x1024.png" title="May Your Month be Merry - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1400x1050.png" title="May Your Month be Merry - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1440x900.png" title="May Your Month be Merry - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1600x1200.png" title="May Your Month be Merry - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1680x1050.png" title="May Your Month be Merry - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1680x1200.png" title="May Your Month be Merry - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1920x1080.png" title="May Your Month be Merry - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1920x1200.png" title="May Your Month be Merry - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-1920x1440.png" title="May Your Month be Merry - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/cal/may-14-may-your-month-be-merry-cal-2560x1440.png" title="May Your Month be Merry - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-640x480.png" title="May Your Month be Merry - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-800x480.png" title="May Your Month be Merry - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-800x600.png" title="May Your Month be Merry - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1024x768.png" title="May Your Month be Merry - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1024x1024.png" title="May Your Month be Merry - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1152x864.png" title="May Your Month be Merry - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1280x720.png" title="May Your Month be Merry - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1280x800.png" title="May Your Month be Merry - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1280x960.png" title="May Your Month be Merry - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1280x1024.png" title="May Your Month be Merry - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1400x1050.png" title="May Your Month be Merry - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1440x900.png" title="May Your Month be Merry - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1600x1200.png" title="May Your Month be Merry - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1680x1050.png" title="May Your Month be Merry - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1680x1200.png" title="May Your Month be Merry - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1920x1080.png" title="May Your Month be Merry - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1920x1200.png" title="May Your Month be Merry - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-1920x1440.png" title="May Your Month be Merry - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-your-month-be-merry/nocal/may-14-may-your-month-be-merry-nocal-2560x1440.png" title="May Your Month be Merry - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Rice Butterflies</h3>
    <p>“Love is in the air. And so are butterflies.” — Designed by <a href="https://www.behance.net/reformat" rel="nofollow external" class="bo">Dejan Cirkvenčič Kralj</a> from Ljubljana, Slovenia.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/may-14-rice-butterflies-full.jpg" title="Rice Butterflies" rel="nofollow external" class="bo"><img width="500" height="281" alt="Rice Butterflies" src="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/may-14-rice-butterflies-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/may-14-rice-butterflies-preview.jpg" title="Rice Butterflies - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-320x480.jpg" title="Rice Butterflies - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-640x480.jpg" title="Rice Butterflies - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-800x480.jpg" title="Rice Butterflies - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-800x600.jpg" title="Rice Butterflies - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1024x768.jpg" title="Rice Butterflies - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1024x1024.jpg" title="Rice Butterflies - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1152x864.jpg" title="Rice Butterflies - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1280x720.jpg" title="Rice Butterflies - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1280x960.jpg" title="Rice Butterflies - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1280x1024.jpg" title="Rice Butterflies - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1400x1050.jpg" title="Rice Butterflies - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1440x900.jpg" title="Rice Butterflies - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1600x1200.jpg" title="Rice Butterflies - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1680x1050.jpg" title="Rice Butterflies - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1920x1080.jpg" title="Rice Butterflies - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1920x1200.jpg" title="Rice Butterflies - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-1920x1440.jpg" title="Rice Butterflies - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/cal/may-14-rice-butterflies-cal-2560x1440.jpg" title="Rice Butterflies - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-320x480.jpg" title="Rice Butterflies - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-640x480.jpg" title="Rice Butterflies - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-800x480.jpg" title="Rice Butterflies - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-800x600.jpg" title="Rice Butterflies - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1024x768.jpg" title="Rice Butterflies - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1024x1024.jpg" title="Rice Butterflies - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1152x864.jpg" title="Rice Butterflies - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1280x720.jpg" title="Rice Butterflies - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1280x960.jpg" title="Rice Butterflies - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1280x1024.jpg" title="Rice Butterflies - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1400x1050.jpg" title="Rice Butterflies - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1440x900.jpg" title="Rice Butterflies - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1680x1050.jpg" title="Rice Butterflies - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1680x1200.jpg" title="Rice Butterflies - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1920x1080.jpg" title="Rice Butterflies - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1920x1200.jpg" title="Rice Butterflies - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-1920x1440.jpg" title="Rice Butterflies - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/rice-butterflies/nocal/may-14-rice-butterflies-nocal-2560x1440.jpg" title="Rice Butterflies - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>May You Fly Away</h3>
    <p>“My sister likes air balloons and she kindly asked me if I could make one wallpaper for her! So here it is! I hope you’ll like it and enjoy it! :)” — Designed by <a href="http://www.behance.net/TatiAnagnostaki" rel="nofollow external" class="bo">Tatiana Anagnostaki</a> from Greece.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/may-14-may-you-fly-away-full.png" title="May you fly away" rel="nofollow external" class="bo"><img width="500" height="281" alt="May you fly away" src="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/may-14-may-you-fly-away-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/may-14-may-you-fly-away-preview.png" title="May you fly away - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/cal/may-14-may-you-fly-away-cal-1024x768.png" title="May you fly away - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/cal/may-14-may-you-fly-away-cal-1280x1024.png" title="May you fly away - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/cal/may-14-may-you-fly-away-cal-1440x900.png" title="May you fly away - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/cal/may-14-may-you-fly-away-cal-1680x1050.png" title="May you fly away - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/cal/may-14-may-you-fly-away-cal-1680x1200.png" title="May you fly away - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/cal/may-14-may-you-fly-away-cal-1920x1440.png" title="May you fly away - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/cal/may-14-may-you-fly-away-cal-2560x1440.png" title="May you fly away - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/nocal/may-14-may-you-fly-away-nocal-1024x768.png" title="May you fly away - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/nocal/may-14-may-you-fly-away-nocal-1280x1024.png" title="May you fly away - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/nocal/may-14-may-you-fly-away-nocal-1440x900.png" title="May you fly away - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/nocal/may-14-may-you-fly-away-nocal-1680x1050.png" title="May you fly away - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/nocal/may-14-may-you-fly-away-nocal-1680x1200.png" title="May you fly away - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/nocal/may-14-may-you-fly-away-nocal-1920x1440.png" title="May you fly away - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/may-you-fly-away/nocal/may-14-may-you-fly-away-nocal-2560x1440.png" title="May you fly away - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Sunflower</h3>
    <p>Designed by <a href="http://www.lucversleijen.nl" rel="nofollow external" class="bo">Luc Versleijen</a> from the Netherlands.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/may-14-sunflower-full.png" title="Sunflower" rel="nofollow external" class="bo"><img width="500" height="281" alt="Sunflower" src="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/may-14-sunflower-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/may-14-sunflower-preview.jpg" title="Sunflower - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-320x480.png" title="Sunflower - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-640x480.png" title="Sunflower - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-800x600.png" title="Sunflower - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-1024x768.png" title="Sunflower - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-1024x1024.png" title="Sunflower - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-1152x864.png" title="Sunflower - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-1280x720.png" title="Sunflower - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-1280x800.png" title="Sunflower - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-1280x960.png" title="Sunflower - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-1280x1024.png" title="Sunflower - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-1440x900.png" title="Sunflower - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-1920x1080.png" title="Sunflower - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-1920x1200.png" title="Sunflower - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/cal/may-14-sunflower-cal-2560x1440.png" title="Sunflower - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>
    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-320x480.png" title="Sunflower - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-640x480.png" title="Sunflower - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-800x600.png" title="Sunflower - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-1024x768.png" title="Sunflower - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-1024x1024.png" title="Sunflower - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-1152x864.png" title="Sunflower - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-1280x720.png" title="Sunflower - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-1280x800.png" title="Sunflower - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-1280x960.png" title="Sunflower - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-1280x1024.png" title="Sunflower - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-1440x900.png" title="Sunflower - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-1920x1080.png" title="Sunflower - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-1920x1200.png" title="Sunflower - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/sunflower/nocal/may-14-sunflower-nocal-2560x1440.png" title="Sunflower - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>
    </li>
    </ul>
    <h3>Spring Bird</h3>
    <p>“Colourful month, colourful bird.” — Designed by <a href="https://www.behance.net/nickydeenen" rel="nofollow external" class="bo">Nicky Deenen</a> from the Netherlands.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/may-14-spring-bird-full.jpg" title="Spring bird" rel="nofollow external" class="bo"><img width="500" height="281" alt="Spring bird" src="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/may-14-spring-bird-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/may-14-spring-bird-preview.jpg" title="Spring bird - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/cal/may-14-spring-bird-cal-1152x864.jpg" title="Spring bird - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/cal/may-14-spring-bird-cal-1280x720.jpg" title="Spring bird - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/cal/may-14-spring-bird-cal-1600x1200.jpg" title="Spring bird - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/cal/may-14-spring-bird-cal-1920x1080.jpg" title="Spring bird - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/cal/may-14-spring-bird-cal-1920x1440.jpg" title="Spring bird - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/cal/may-14-spring-bird-cal-2560x1440.jpg" title="Spring bird - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/nocal/may-14-spring-bird-nocal-1152x864.jpg" title="Spring bird - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/nocal/may-14-spring-bird-nocal-1280x720.jpg" title="Spring bird - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/nocal/may-14-spring-bird-nocal-1600x1200.jpg" title="Spring bird - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/nocal/may-14-spring-bird-nocal-1920x1080.jpg" title="Spring bird - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/nocal/may-14-spring-bird-nocal-1920x1440.jpg" title="Spring bird - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/spring-bird/nocal/may-14-spring-bird-nocal-2560x1440.jpg" title="Spring bird - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Meditation Month</h3>
    <p>“During May, try meditating because meditation can help us embrace our worries, our fears, and our anger, and that is very healing.” — Designed by <a href="http://www.cre8mania.com" rel="nofollow external" class="bo">Marc Daccache</a> from Lebanon.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/may-14-meditation-month-full.jpg" title="Meditation Month" rel="nofollow external" class="bo"><img width="500" height="281" alt="Meditation Month" src="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/may-14-meditation-month-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/may-14-meditation-month-preview.jpg" title="Meditation Month - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-320x480.jpg" title="Meditation Month - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-640x480.jpg" title="Meditation Month - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-800x480.jpg" title="Meditation Month - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-800x600.jpg" title="Meditation Month - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1024x768.jpg" title="Meditation Month - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1024x1024.jpg" title="Meditation Month - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1152x864.jpg" title="Meditation Month - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1280x720.jpg" title="Meditation Month - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1280x800.jpg" title="Meditation Month - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1280x960.jpg" title="Meditation Month - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1280x1024.jpg" title="Meditation Month - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1400x1050.jpg" title="Meditation Month - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1440x900.jpg" title="Meditation Month - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1600x1200.jpg" title="Meditation Month - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1680x1050.jpg" title="Meditation Month - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1680x1200.jpg" title="Meditation Month - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1920x1080.jpg" title="Meditation Month - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1920x1200.jpg" title="Meditation Month - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-1920x1440.jpg" title="Meditation Month - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/cal/may-14-meditation-month-cal-2560x1440.jpg" title="Meditation Month - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-320x480.jpg" title="Meditation Month - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-640x480.jpg" title="Meditation Month - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-800x480.jpg" title="Meditation Month - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-800x600.jpg" title="Meditation Month - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1024x768.jpg" title="Meditation Month - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1024x1024.jpg" title="Meditation Month - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1152x864.jpg" title="Meditation Month - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1280x720.jpg" title="Meditation Month - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1280x800.jpg" title="Meditation Month - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1280x960.jpg" title="Meditation Month - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1280x1024.jpg" title="Meditation Month - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1400x1050.jpg" title="Meditation Month - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1440x900.jpg" title="Meditation Month - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1600x1200.jpg" title="Meditation Month - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1680x1050.jpg" title="Meditation Month - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1680x1200.jpg" title="Meditation Month - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1920x1080.jpg" title="Meditation Month - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1920x1200.jpg" title="Meditation Month - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-1920x1440.jpg" title="Meditation Month - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/may-14/meditation-month/nocal/may-14-meditation-month-nocal-2560x1440.jpg" title="Meditation Month - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Join In Next Month!</h3>
    <p>Please note that we respect and carefully consider the ideas and motivation behind each and every artist’s work. This is why we give all artists the <strong>full freedom to explore their creativity</strong> and express emotions and experience throughout their works. This is also why the themes of the wallpapers weren’t anyhow influenced by us, but rather designed from scratch by the artists themselves.</p>
    <p>A big thank you to all designers for their participation. <a href="http://www.smashingmagazine.com/2008/03/19/desktop-wallpaper-calendar-join-in/" rel="nofollow external" class="bo">Join in next month</a>!</p>
    <h4>What’s Your Favorite?</h4>
    <p>What’s your favorite theme or wallpaper for this month? Please let us know in the comment section below.</p>
    <p><em>(il)</em></p>
    <p>The post <a href="http://www.smashingmagazine.com/2014/04/30/desktop-wallpaper-calendars-may-2014/" rel="nofollow external" class="bo">Desktop Wallpaper Calendars: May 2014</a> appeared first on <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>.</p>
    </div>
]]>
</Body>
<Summary>We always try our best to challenge your artistic abilities and produce some interesting, beautiful and creative artwork. And as designers we usually turn to different sources of inspiration. As a...</Summary>
<Website>http://www.smashingmagazine.com/2014/04/30/desktop-wallpaper-calendars-may-2014/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/44116/guest@my.umbc.edu/e37aadd563616d5e2424ce4b72b87ac6/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>graphics</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>wallpapers</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>Wed, 30 Apr 2014 07:20:16 -0400</PostedAt>
<EditAt>Wed, 30 Apr 2014 07:20:16 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="44010" important="false" status="posted" url="https://my3.my.umbc.edu/posts/44010">
<Title>50 fantastic freebies for web designers, May 2014</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2014/04/thumbnail24.jpg" width="200" height="160" style="max-width: 100%; height: auto;">The best thing about the Web is the number of awesome freebies that generous members of the community release. It’s mind-blowin’ how cool some of the free stuff that we can download is, from themes, to icons, to fonts.</p> <p>With this much available, you’ll be spoilt for choice, so every month we’ll bring you a selection of our favorite tools, designed to make your task a little easier.</p> <p>This month we have 50 freebies for your delectation. Among them you’ll find tools, icons, fonts, applications, scripts and much more. All free to download right now.</p> <p> </p> <h1>Promesh Two</h1> <p>A free retro athletic font.</p> <p><a href="https://www.behance.net/gallery/PROMESH-TWO-A-Free-Athletic-Font/14773639" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures110.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Focus</h1> <p>A soft font for headlines.</p> <p><a href="http://www.egidiofilippetti.it/focus/focus.html" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures2.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Pint</h1> <p>A small grunt.js runner.</p> <p><a href="http://www.pintjs.com/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures3.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Velositey</h1> <p>An awesome website layout builder.</p> <p><a href="http://dandkagency.com/velositey/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures4.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Moderne sans</h1> <p>A clean sans serif typeface.</p> <p><a href="https://www.behance.net/gallery/MODERNE-SANS-FREE-TYPEFACE/15574861" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures5.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Bourbon neat</h1> <p>A lightweight grid for Sass and Bourbon</p> <p><a href="http://neat.bourbon.io/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures6.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Sign in / up flow</h1> <p>An iOS style login template in PSD format.</p> <p><a href="http://dribbble.com/shots/1481143-Full-layered-sign-in-up-flow-free-PSD?list=searches&amp;offset=0" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures7.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Dribbbox</h1> <p>Self hosting for your Dribbble portfolio.</p> <p><a href="http://dribbbox.com/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures8.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Flight indicators</h1> <p>A jQuery plugin to display high quality indicators.</p> <p><a href="http://sebmatton.github.io/flightindicators/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures9.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Blurred backgrounds</h1> <p>High resolution jpg files for all your projects.</p> <p><a href="https://www.behance.net/gallery/Blurred-Backgrounds-Vol3-(Freebie)/15548589" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures101.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Sliding Image Divider</h1> <p>Code experiment for sliding images.</p> <p><a href="http://codepen.io/Fellini85/details/oaDBh/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures111.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Miletra</h1> <p>Handwritten slim font.</p> <p><a href="https://www.behance.net/gallery/MILETRA-Free-font/15544711" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures121.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Flighttracker</h1> <p>Nice modern widget for tracking commercial flights.</p> <p><a href="http://codepen.io/fabricelejeune/pen/zejnF" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures131.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>pttrns</h1> <p>Mobile user interface patterns.</p> <p><a href="http://pttrns.com/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures14.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Lossy Gif Compressor</h1> <p>Modern gif compressor based on gifsicle.</p> <p><a href="http://pornel.net/lossygif" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures15.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Galaxy S5 Mockup</h1> <p>A realistic mockup of the most recent Samsung phone.</p> <p><a href="https://www.behance.net/gallery/Samsung-Galaxy-S5-Vector-Illustration/15829851" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures16.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Facebook Covers</h1> <p>Elegant timeline covers for your Facebook pages.</p> <p><a href="https://www.behance.net/gallery/Freebie-Facebook-Timeline-Covers-PSD/15473181" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures17.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>ngxtop</h1> <p>Real time metrics for nginx.</p> <p><a href="https://github.com/lebinh/ngxtop" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures18.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Stylish</h1> <p>Google code prettify CSS and JS code experiment.</p> <p><a href="http://cssdeck.com/labs/stylish-google-code-prettify" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures19.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Slate</h1> <p>Modern IRC client built with web technologies.</p> <p><a href="https://github.com/slate/slate" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures20.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Enyo</h1> <p>A handdrawn font in three weights.</p> <p><a href="https://www.behance.net/gallery/ENYO-font/15544405" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures21.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Vector Flourishes</h1> <p>20 hand drawn vector flourishes.</p> <p><a href="http://every-tuesday.com/freebie-hand-drawn-vector-flourishes/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures22.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Avgrund</h1> <p>Modal UI concept.</p> <p><a href="http://lab.hakim.se/avgrund/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures23.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Layer Exporter</h1> <p>Amazing plugin for Adobe Illustrator.</p> <p><a href="http://dehats.com/illustrator-layer-exporter/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures24.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Flat Devices</h1> <p>8 pure CSS mobile devices.</p> <p><a href="http://marvelapp.github.io/devices.css/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures25.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Retro Logos</h1> <p>10 retro logo badges in PSD.</p> <p><a href="https://www.behance.net/gallery/10-free-retro-logos-Badges-PSD-files/15838543" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures26.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Side sliding menu</h1> <p>Soft and swift code experiment for menus.</p> <p><a href="http://codepen.io/EduardL/pen/aBGAy" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures27.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>FastClick</h1> <p>Polyfill to remove click delays on browsers with touch UIs.</p> <p><a href="https://github.com/ftlabs/fastclick" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures28.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Mini set icons</h1> <p>21 beautifully crafted icons.</p> <p><a href="http://dribbble.com/shots/1503289-Mini-Set-Icons-free" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures29.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>CutJS</h1> <p>HTML5 rendering engine for games.</p> <p><a href="http://cutjs.org/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures30.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Kirvy</h1> <p>Simple sans serif font in 4 weights.</p> <p><a href="https://www.behance.net/gallery/KIRVY-Font-Family/15706321" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures311.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>CSS 3D flip box</h1> <p>CSS and JS code experiment for flipping content boxes.</p> <p><a href="http://codepen.io/syedrafeeq/pen/eCkFt" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures321.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Johny Strocker</h1> <p>An all caps display font.</p> <p><a href="https://www.behance.net/gallery/Johny-Strocker-Free-Font/15607689" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures33.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Curved Text</h1> <p>A jQuery plugin that aligns text to any curve.</p> <p><a href="http://www.olivermusebrink.de/beta/curvedtext/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures34.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>zEnigma</h1> <p>Responsive HTML5 theme for beauty and salon themes.</p> <p><a href="http://www.zerotheme.com/1082/zenigma-free-responsive-html5-theme.html" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures35.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Amsterdam Superstar</h1> <p>An all caps display font.</p> <p><a href="http://fontsofchaos.com/portfolio/amsterdam-superstar-fonts/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures361.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Purple UI kit</h1> <p>A responsive HTML UI kit.</p> <p><a href="http://w3layouts.com/purple-ui-kit-flat-responsive-web-template" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures37.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Business newsletter</h1> <p>InDesign template of 4 beautiful pages.</p> <p><a href="http://stockindesign.com/free-business-newsletter/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures38.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Leather texture set</h1> <p>A big package of seamless textures with sources.</p> <p><a href="http://www.designshock.com/leather-texture/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures39.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Awesomekit.me</h1> <p>iOS 7 wireframe templates.</p> <p><a href="http://awesomekit.me/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures40.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Centro Carnes</h1> <p>A nice set of cooking icons in a neon style.</p> <p><a href="https://www.behance.net/gallery/ICON-SET-Free-Download/16014041" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures41.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Bierunt</h1> <p>Highly readable multipurpose font.</p> <p><a href="https://www.behance.net/gallery/Bireunt-Font-Free/15941111" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures421.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Densia Sans</h1> <p>Economic sans serif designed for small sizes use.</p> <p><a href="http://www.harbortype.com/densia-sans/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures43.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Mabur</h1> <p>Flat portfolio PSD template.</p> <p><a href="http://fikristudio.com/mabur-free-portofolio-psd/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures44.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>jqGrid</h1> <p>jQuery grid plugin.</p> <p><a href="http://ortheme.com/jqgrid-jquery-grid-plugin/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures45.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Intro Condensed</h1> <p>An all caps font with basic Latin and numerals.</p> <p><a href="http://fontfabric.com/intro-condensed-free/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures46.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Animated Clay Typography</h1> <p>PSD and AE animated typography.</p> <p><a href="https://www.behance.net/gallery/Animated-Clay-Typography/15659693" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures47.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Kocoon</h1> <p>Experimental font created with Nodebox.</p> <p><a href="http://dribbble.com/shots/1497352-Kocoon-Light-Free-Font" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures48.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Spinning Wheel</h1> <p>CSS and JS experiment for a useful spinning wheel.</p> <p><a href="http://codepen.io/mikebarwick/pen/kCtgj" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures49.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Mobile Icons</h1> <p>A massive bundle of more than 10000 icons.</p> <p><a href="http://www.iconshock.com/mobile-icon/" rel="nofollow external" class="bo"><img src="http://www.shockfamily.us/wp-content/uploads/2014/04/A-roundup-of-recent-web-treasures501.jpg" width="650" alt="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"></a></p> <p> </p> <p><em>Featured image/thumbnail, uses <a href="https://flic.kr/p/dPW93P" rel="nofollow external" class="bo">food image</a> via Frank Lindecke</em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/crazyfuse-bundle.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Go Crazy with CrazyFuse’s Bundle of Premium Graphics – only $17!</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="50 fantastic freebies for web designers, May 2014" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2014/04/50-fantastic-freebies-for-web-designers-may-2014/" rel="nofollow external" class="bo">Source</a> <br><br><br><a href="http://da.feedsportal.com/r/195505406240/u/49/f/661066/c/35285/s/39e945a9/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/195505406240/u/49/f/661066/c/35285/s/39e945a9/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/195505406240/u/49/f/661066/c/35285/s/39e945a9/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/195505406240/u/49/f/661066/c/35285/s/39e945a9/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/195505406240/u/49/f/661066/c/35285/s/39e945a9/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/195505406240/u/49/f/661066/c/35285/s/39e945a9/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/195505406240/u/49/f/661066/c/35285/s/39e945a9/sc/4/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/195505406240/u/49/f/661066/c/35285/s/39e945a9/sc/4/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The best thing about the Web is the number of awesome freebies that generous members of the community release. It’s mind-blowin’ how cool some of the free stuff that we can download is, from...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/39e945a9/sc/4/l/0L0Swebdesignerdepot0N0C20A140C0A40C50A0Efantastic0Efreebies0Efor0Eweb0Edesigners0Emay0E20A140C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/44010/guest@my.umbc.edu/c0f7f486f2a1af16a9f8a994e25a254a/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>free-downloads</Tag>
<Tag>free-fonts</Tag>
<Tag>free-icons</Tag>
<Tag>free-plguins</Tag>
<Tag>free-psds</Tag>
<Tag>free-resources</Tag>
<Tag>free-scripts</Tag>
<Tag>freebies</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</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>Wed, 30 Apr 2014 04:15:24 -0400</PostedAt>
<EditAt>Wed, 30 Apr 2014 04:15:24 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="44037" important="false" status="posted" url="https://my3.my.umbc.edu/posts/44037">
<Title>LoadStorm 2.0 Debuts for Enterprise-Grade Web Performance and Load Testing</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>LoadStorm 2.0 Combines Enterprise-Grade Performance Testing, Cost Efficiency and Expert Web Performance Engineering Consulting to Cover the Gamut of Testing Needs for Web Developers and Web Managers.</p></div>
]]>
</Body>
<Summary>LoadStorm 2.0 Combines Enterprise-Grade Performance Testing, Cost Efficiency and Expert Web Performance Engineering Consulting to Cover the Gamut of Testing Needs for Web Developers and Web Managers.</Summary>
<Website>http://www.htmlgoodies.com/daily_news/loadstorm_2-2.0-tool-debuts-for-enterprise-grade-web-performance-and-load-testing.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/44037/guest@my.umbc.edu/0227c3e1616e3cac5718c4bd6708410a/api/pixel</TrackingUrl>
<Tag>html</Tag>
<Tag>htmlgoodies</Tag>
<Tag>learning</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>Tue, 29 Apr 2014 23:47:00 -0400</PostedAt>
</NewsItem>

</News>
