<?xml version="1.0"?>
<News hasArchived="true" page="7915" pageCount="10826" pageSize="10" timestamp="Mon, 21 Sep 2026 04:35:06 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7915&amp;range=2">
<NewsItem contentIssues="true" id="40859" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40859">
<Title>How to use the Meter &amp; Progress Elements</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>The development of HTML5 has introduced a series of new elements that can be used to create common UI components like date pickers and autocomplete dropdowns. Two of these new elements are <code>&lt;progress&gt;</code> and <code>&lt;meter&gt;</code>.</p>
    <p>In this post you’re going to learn how to use the <code>&lt;progress&gt;</code> and <code>&lt;meter&gt;</code> elements in your web applications. You’ll also be learning how to style these elements so that they fit with the rest of your design.</p>
    <h2>Introducing the Progress Element</h2>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/01/progress_single.png" rel="nofollow external" class="bo"><img alt="The default progress bar in Google Chrome" src="http://blog.teamtreehouse.com/wp-content/uploads/2014/01/progress_single.png" width="638" height="49" style="max-width: 100%; height: auto;"></a><p>The default progress bar in Google Chrome.</p>
    </div>
    <p>The <code>&lt;progress&gt;</code> element gives you a really easy way of creating progress bars for your web app. These can be useful for things like displaying the progress of a file upload, or the user’s place within a multi-page form.</p>
    <pre><code>&lt;progress value="50" max="100"&gt;&lt;/progress&gt;</code></pre>
    <p>There are two attributes that you need to specify on a <code>&lt;progress&gt;</code> element, <code>max</code> and <code>value</code>. The <code>max</code> attribute specifies how much <em>work</em> the task requires in total, and the <code>value</code> attribute specifies how much of this work has been completed.</p>
    <pre><code>progressElement.position;</code></pre>
    <p>The browser will automatically calculate the percentage of the work that has been completed and adjust the length of the progress bar accordingly. You can access this percentage in JavaScript using the <code>&lt;progress&gt;</code> element’s <code>position</code> property. This will be a value between 0.0 and 1.0</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/01/progress_default.png" rel="nofollow external" class="bo"><img alt="Indeterminate (top) and Determinate (bottom) progress bars." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/01/progress_default.png" width="638" height="82" style="max-width: 100%; height: auto;"></a><p>Indeterminate (top) and determinate (bottom) progress bars.</p>
    </div>
    <p>Progress elements that have a <code>value</code> attribute are known as being <em>determinate</em>. If the element doesn’t have a <code>value</code> attribute it’s referred to as being <em>indeterminate</em>. The browser will display determinate and indeterminate progress bars differently (as shown in the figure above).</p>
    <h3>Styling Progress Bars</h3>
    <p>You can apply your own custom styling to <code>&lt;progress&gt;</code> elements using <code>pseudo-classes</code>. These classes vary slightly between different browsers.</p>
    <p>To get started you need to remove the default styling that’s applied by the browser. You do this by setting the <code>appearance</code> rule to <code>none</code>.</p>
    <pre><code>/* All Progress Bars */&#x000A;    progress {&#x000A;        /* Reset the default appearance */&#x000A;        -webkit-appearance: none;&#x000A;        -moz-appearance: none;&#x000A;        appearance: none;&#x000A;    }&#x000A;    &#x000A;    /* Determinate */&#x000A;    progress[value] {&#x000A;        /* Reset the default appearance */&#x000A;        -webkit-appearance: none;&#x000A;        -moz-appearance: none;&#x000A;        appearance: none;&#x000A;    }&#x000A;    &#x000A;    /* Indeterminate */&#x000A;    progress:not([value]) {&#x000A;        /* Reset the default appearance */&#x000A;        -webkit-appearance: none;&#x000A;        -moz-appearance: none;&#x000A;        appearance: none;&#x000A;    }</code></pre>
    <p>You can specifically target determinate or indeterminate progress bars using the <code>progress[value]</code> and <code>progress:not([value])</code> selectors. The first will match elements with a <code>value</code> property (deterministic), and the second elements without a <code>value</code> property (indeterminate).</p>
    <p>In Chrome and Safari the <code>-webkit-progress-bar</code> pseudo-class will target the track of the <code>&lt;progress&gt;</code> element, and <code>-webkit-progress-value</code> will target the bar itself.</p>
    <pre><code>progress::-webkit-progress-bar {&#x000A;        background: #EEE;&#x000A;        box-shadow: 0 2px 3px rgba(0,0,0,0.2) inset;&#x000A;        border-radius: 3px;&#x000A;    }&#x000A;    &#x000A;    progress::-webkit-progress-value {&#x000A;        background-color: #CC0000;&#x000A;        border-radius: 3px;&#x000A;    }</code></pre>
    <p>In Firefox there is only one pseudo-class for styling progress bars <code>-moz-progress-bar</code>. This looks similar to <code>-webkit-progress-bar</code> but functions differently. Unlike in Chrome/Safari, this class targets the bar and not the track of the progress element. To target the track you need to apply your styling rules directly to the element as shown below.</p>
    <pre><code>progress {&#x000A;        background: #EEE;&#x000A;        box-shadow: 0 2px 3px rgba(0,0,0,0.2) inset;&#x000A;        border-radius: 3px;&#x000A;    }&#x000A;    &#x000A;    progress::-moz-progress-bar {&#x000A;        background-color: #CC0000;&#x000A;        border-radius: 3px;&#x000A;    }</code></pre>
    <p>Both of these examples will create the progress bar shown in the following image.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/01/progress_styled.png" rel="nofollow external" class="bo"><img alt="Styled progress bars in Google Chrome." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/01/progress_styled.png" width="638" height="106" style="max-width: 100%; height: auto;"></a><p>Styled progress bars in Google Chrome.</p>
    </div>
    <p><a href="http://codepen.io/matt-west/pen/bpzEy" rel="nofollow external" class="bo">View on CodePen</a></p>
    <h2>The Meter Element</h2>
    <p>The next element that we’re going to look at is <code>&lt;meter&gt;</code>. This element is visually similar to <code>&lt;progress&gt;</code> but has a very different purpose. While <code>&lt;progress&gt;</code> is used to convey how much work in a task has been completed, the <code>&lt;meter&gt;</code> element is used to display a measurement on a known scale. This could be something like the current disk usage on your computer, or a temperature measurement (within a defined range).</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/01/meter_default.png" rel="nofollow external" class="bo"><img alt="Default meter elements in Google Chrome." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/01/meter_default.png" width="638" height="114" style="max-width: 100%; height: auto;"></a><p>Default meter elements in Google Chrome.</p>
    </div>
    <pre><code>&lt;meter min="0" max="100" low="25" high="75" optimum="50" value="50"&gt;&lt;/meter&gt;</code></pre>
    <p>The scale for a <code>&lt;meter&gt;</code> element is split into three parts: low, medium, and high. The default color of the meter bar is dependent on which of these parts the measured value falls within.</p>
    <p>There are a number of HTML attributes that can be used to define the scale of a <code>&lt;meter&gt;</code>element.</p>
    <ul>
    <li>
    <code>min</code> – The minimum value on the scale.</li>
    <li>
    <code>max</code> – The maximum value on the scale.</li>
    <li>
    <code>low</code> – The upper-boundary of the <em>low</em> section on the scale.</li>
    <li>
    <code>high</code> – The lower-boundary of the <em>high</em> section on the scale.</li>
    <li>
    <code>optimum</code> – The optimum value.</li>
    <li>
    <code>value</code> – The measurement.</li>
    </ul>
    <p>The only one of these attributes that <strong>must</strong> be specified is <code>value</code>. If you choose not to specify any other attributes the browser will assume the scale is between 0 and 1. You should therefore ensure that your value falls between these numbers.</p>
    <h3>Styling Meter Elements</h3>
    <p>As with <code>&lt;progress&gt;</code> elements, the way that you style a <code>&lt;meter&gt;</code> element differs between Chrome/Safari and Firefox.</p>
    <p>You start by resetting the default appearance as you did with <code>&lt;progress&gt;</code> elements.</p>
    <pre><code>meter {&#x000A;        /* Reset the default appearance */&#x000A;        -webkit-appearance: none;&#x000A;        -moz-appearance: none;&#x000A;        appearance: none;&#x000A;    }</code></pre>
    <p>There are four pseudo-classes that are used to style <code>&lt;meter&gt;</code> elements in Chrome and Safari:</p>
    <ul>
    <li><code>-webkit-meter-bar</code></li>
    <li><code>-webkit-meter-optimum-value</code></li>
    <li><code>-webkit-meter-suboptimum-value</code></li>
    <li>
    <code>-webkit-meter-even-less-good-value</code> (yes, seriously)</li>
    </ul>
    <p><em>There’s also <code>-webkit-meter-inner-element</code> but we won’t be using that for styling.</em></p>
    <p>The <code>-webkit-meter-bar</code> pseudo-class sets the styling for the background of the element. (When learning about <code>&lt;progress&gt;</code> elements I referred to this as the <em>track</em>.)</p>
    <p>The <code>-webkit-meter-optimum-value</code>, <code>-webkit-meter-suboptimum-value</code>, and <code>-webkit-meter-even-less-good-value</code> pseudo-classes are used to apply different styling rules to the bar depending on which part of the scale the value falls in (low, medium, or high).</p>
    <pre><code>meter::-webkit-meter-bar {&#x000A;        background: #EEE;&#x000A;        box-shadow: 0 2px 3px rgba(0,0,0,0.2) inset;&#x000A;        border-radius: 3px;&#x000A;    }&#x000A;    &#x000A;    meter::-webkit-meter-optimum-value {&#x000A;        background: #86CC00; /* Green */&#x000A;        border-radius: 3px;&#x000A;    }&#x000A;    &#x000A;    meter::-webkit-meter-suboptimum-value {&#x000A;        background: #FFDB1A; /* Yellow */&#x000A;        border-radius: 3px;&#x000A;    }&#x000A;    &#x000A;    meter::-webkit-meter-even-less-good-value {&#x000A;        background: #CC4600; /* Red */&#x000A;        border-radius: 3px;&#x000A;    }</code></pre>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/01/meter_styled.png" rel="nofollow external" class="bo"><img alt="Style meter elements in Google Chrome." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/01/meter_styled.png" width="638" height="152" style="max-width: 100%; height: auto;"></a><p>Styled meter elements in Google Chrome.</p>
    </div>
    <p><a href="http://codepen.io/matt-west/pen/bpzEy" rel="nofollow external" class="bo">View on CodePen</a></p>
    <p>The naming conventions for the Firefox pseudo-classes vary a little from the ones we looked at earlier.</p>
    <ul>
    <li><code>-moz-meter-bar</code></li>
    <li><code>-moz-meter-optimum</code></li>
    <li><code>-moz-meter-sub-optimum</code></li>
    <li><code>-moz-meter-sub-sub-optimum</code></li>
    </ul>
    <p>Like with <code>&lt;progress&gt;</code> elements, in Firefox the <code>-moz-meter-bar</code> pseudo-class refers to the bar and not the background (or <em>track</em>) of the element. You will therefore need to apply styling for the track directly to the element.</p>
    <pre><code>meter {&#x000A;        /* For Firefox */&#x000A;        background: #EEE;&#x000A;        box-shadow: 0 2px 3px rgba(0,0,0,0.2) inset;&#x000A;        border-radius: 3px;&#x000A;    }&#x000A;    &#x000A;    meter::-moz-meter-bar {&#x000A;        border-radius: 3px;&#x000A;    }&#x000A;    &#x000A;    meter:-moz-meter-optimum::-moz-meter-bar {&#x000A;        background: #86CC00;&#x000A;    }&#x000A;    &#x000A;    meter:-moz-meter-sub-optimum::-moz-meter-bar {&#x000A;        background: #FFDB1A;&#x000A;    }&#x000A;    &#x000A;    meter:-moz-meter-sub-sub-optimum::-moz-meter-bar {&#x000A;        background: #CC4600;&#x000A;    }</code></pre>
    <p>This CSS is the Firefox equivalent of the WebKit code above.</p>
    <h2>Browser Support for Progress &amp; Meter Elements</h2>
    <p>Chrome, Firefox, Safari, and Opera all include support for <code>&lt;progress&gt;</code> and <code>&lt;meter&gt;</code> elements. Internet Explorer introduced support for the <code>&lt;progress&gt;</code> element in IE10, as did Safari with iOS7. However, neither IE10 or iOS Safari currently support the <code>&lt;meter&gt;</code> element.</p>
    <p><a href="http://caniuse.com/#feat=progressmeter" rel="nofollow external" class="bo">More information about browser support</a></p>
    <h2>Summary</h2>
    <p>In this blog post you’ve learned about the <code>&lt;meter&gt;</code> and <code>&lt;progress&gt;</code> elements and where they should be used. You’ve also learned how to apply custom styling to these elements using a variety of CSS pseudo-classes.</p>
    <p>We’re starting to see more and more of these new UI components enter browsers. You no longer need to use JavaScript libraries to create things like progress bars and date pickers. I personally welcome this change. It’s nice to see browsers implementing native versions of commonly used UI components. It makes our jobs just that little bit easier.</p>
    <h2>Further Reading</h2>
    <ul>
    <li><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-button-element.html#the-progress-element" rel="nofollow external" class="bo">WHAT WG Spec</a></li>
    <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress" rel="nofollow external" class="bo">MDN Docs: Progress Element</a></li>
    <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter" rel="nofollow external" class="bo">MDN Docs: Meter Element</a></li>
    </ul>
    <p>The post <a href="http://blog.teamtreehouse.com/use-meter-progress-elements" rel="nofollow external" class="bo">How to use the Meter &amp; Progress Elements</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>The development of HTML5 has introduced a series of new elements that can be used to create common UI components like date pickers and autocomplete dropdowns. Two of these new elements are...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/SftaR7Nyr8s/use-meter-progress-elements</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40859/guest@my.umbc.edu/f9986f556e5c5bb6c4febe37d4cf96f2/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>code</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>meter-element</Tag>
<Tag>progress-element</Tag>
<Tag>responsive</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>Fri, 31 Jan 2014 11:16:13 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="109847" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109847">
<Title>Samantha Hawkins &#8217;14, INDS, Crowned Miss Baltimore</Title>
<Body>
<![CDATA[
    <div class="html-content">Congratulations to Samantha Hawkins ’14, Interdisciplinary Studies, who was crowned Miss Baltimore on January 25. As Miss Baltimore, Samantha will continue her work helping low-income families by launching a state-wide campaign to expand the Food Resource Program. Samantha is a Maryland Delegate Scholar and a recipient of the Walter Sondheim Jr. Nonprofit Leadership Scholarship. In 2012 and 2013 she was also awarded the Miss America Academic Award. After graduation, Samantha will be teaching in Baltimore City as a member of Teach for America, while pursuing a Master’s degree in Elementary Education at Johns Hopkins.</div>
]]>
</Body>
<Summary>Congratulations to Samantha Hawkins ’14, Interdisciplinary Studies, who was crowned Miss Baltimore on January 25. As Miss Baltimore, Samantha will continue her work helping low-income families by...</Summary>
<Website>https://news.umbc.edu/samantha-hawkins-14-inds-crowned-miss-baltimore/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109847/guest@my.umbc.edu/9387d08608a5821fe2e615bf9b1edc6c/api/pixel</TrackingUrl>
<Tag>community</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 31 Jan 2014 10:40:43 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="106880" important="false" status="posted" url="https://my3.my.umbc.edu/posts/106880">
<Title>Round-Up: UMBC in the News</Title>
<Body>
<![CDATA[
    <div class="html-content">One of the things that makes UMBC great is how wonderful our alumni, students, faculty and staff are. Because of …</div>
]]>
</Body>
<Summary>One of the things that makes UMBC great is how wonderful our alumni, students, faculty and staff are. Because of …</Summary>
<Website>https://magazine.umbc.edu/round-up-umbc-in-the-news/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/106880/guest@my.umbc.edu/b9d3c4f168844bedc0865ed5841ca359/api/pixel</TrackingUrl>
<Tag>alumni</Tag>
<Tag>anderson-wells-13</Tag>
<Tag>anne-rubin</Tag>
<Tag>b</Tag>
<Tag>baltimore-city-paper</Tag>
<Tag>biochemistry-and-molecular-biology</Tag>
<Tag>civil-war-history</Tag>
<Tag>david-brasington</Tag>
<Tag>gender-and-womens-studies</Tag>
<Tag>jesse-poole-13</Tag>
<Tag>kate-drabinski</Tag>
<Tag>katie-kopajtic-11</Tag>
<Tag>kenneth-gibbs</Tag>
<Tag>neal-mcdonald</Tag>
<Tag>princeton-review</Tag>
<Tag>science-magazine</Tag>
<Tag>steve-silberg</Tag>
<Tag>the-baltimore-su</Tag>
<Tag>vin-grabill</Tag>
<Tag>wypr</Tag>
<Group token="retired-1945">UMBC Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-1945</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/images/avatars/group/8/xsmall.png?1789738931</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/8/original.png?1789738931</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/8/xxlarge.png?1789738931</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/images/avatars/group/8/xlarge.png?1789738931</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/8/large.png?1789738931</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/8/medium.png?1789738931</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/images/avatars/group/8/small.png?1789738931</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/images/avatars/group/8/xsmall.png?1789738931</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/images/avatars/group/8/xxsmall.png?1789738931</AvatarUrl>
<Sponsor>UMBC Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 31 Jan 2014 10:39:02 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="40856" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40856">
<Title>Round-Up: UMBC in the News</Title>
<Body>
<![CDATA[
    <div class="html-content">One of the things that makes UMBC great is how wonderful our alumni, students, faculty and staff are. Because of these amazing people, UMBC often finds itself “in the news,” so each week, we’ll be sharing with you a round-up … <a href="http://umbcalumni.wordpress.com/2014/01/31/round-up-umbc-in-the-news/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>One of the things that makes UMBC great is how wonderful our alumni, students, faculty and staff are. Because of these amazing people, UMBC often finds itself “in the news,” so each week, we’ll be...</Summary>
<Website>http://umbcalumni.wordpress.com/2014/01/31/round-up-umbc-in-the-news/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40856/guest@my.umbc.edu/3ca9d12818029f1874ec8d34985fa3d7/api/pixel</TrackingUrl>
<Tag>00s-alums</Tag>
<Tag>10s-alums</Tag>
<Tag>anderson-wells-13</Tag>
<Tag>anne-rubin</Tag>
<Tag>b</Tag>
<Tag>baltimore-city-paper</Tag>
<Tag>biochemistry-and-molecular-biology</Tag>
<Tag>civil-war-history</Tag>
<Tag>current-students</Tag>
<Tag>david-brasington</Tag>
<Tag>gender-and-womens-studies</Tag>
<Tag>jesse-poole-13</Tag>
<Tag>kate-drabinski</Tag>
<Tag>katie-kopajtic-11</Tag>
<Tag>kenneth-gibbs</Tag>
<Tag>neal-mcdonald</Tag>
<Tag>princeton-review</Tag>
<Tag>science-magazine</Tag>
<Tag>steve-silberg</Tag>
<Tag>the-baltimore-su</Tag>
<Tag>umbc-news</Tag>
<Tag>vin-grabill</Tag>
<Tag>wypr</Tag>
<Group token="retired-20">UMBC Alumni</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-20</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xsmall.png?1280681147</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/original.png?1280681147</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xxlarge.png?1280681147</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xlarge.png?1280681147</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/large.png?1280681147</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/medium.png?1280681147</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/small.png?1280681147</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xsmall.png?1280681147</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xxsmall.png?1280681147</AvatarUrl>
<Sponsor>UMBC Alumni</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 31 Jan 2014 10:39:02 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="40854" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40854">
<Title>Walk in Advising Hours February 3rd-7th</Title>
<Tagline>Stop by to see an advisor</Tagline>
<Body>
<![CDATA[
    <div class="html-content">Monday, February 3rd<br>10am-11:30am<br>1:30pm-3pm<br><br>Tuesday, February 4th<br>10am-11:30am<br>1:30pm-3pm<br><br>Wednesday, February 5th<br>10am-11:30am<br>1:30-3pm<br><br>Thursday, February 6th<br>10am-11:30am<br>1:30-3pm<br><br>Friday, February 7th<br>10am-11:30am<br><br>Advisors are also available by appointment.<br>
    </div>
]]>
</Body>
<Summary>Monday, February 3rd 10am-11:30am 1:30pm-3pm  Tuesday, February 4th 10am-11:30am 1:30pm-3pm  Wednesday, February 5th 10am-11:30am 1:30-3pm  Thursday, February 6th 10am-11:30am 1:30-3pm  Friday,...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40854/guest@my.umbc.edu/980b178250a162b3814bfe0632f393a4/api/pixel</TrackingUrl>
<Group token="coeitadvising">College of Engineering &amp;amp; Information Technology Advising</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/coeitadvising</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/564/6207e48bc2612a0b21c093b4a46a3be8/xsmall.png?1778247417</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/564/6207e48bc2612a0b21c093b4a46a3be8/original.png?1778247417</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/564/6207e48bc2612a0b21c093b4a46a3be8/xxlarge.png?1778247417</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/564/6207e48bc2612a0b21c093b4a46a3be8/xlarge.png?1778247417</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/564/6207e48bc2612a0b21c093b4a46a3be8/large.png?1778247417</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/564/6207e48bc2612a0b21c093b4a46a3be8/medium.png?1778247417</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/564/6207e48bc2612a0b21c093b4a46a3be8/small.png?1778247417</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/564/6207e48bc2612a0b21c093b4a46a3be8/xsmall.png?1778247417</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/564/6207e48bc2612a0b21c093b4a46a3be8/xxsmall.png?1778247417</AvatarUrl>
<Sponsor>Engineering &amp; Computer Science Advising</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 31 Jan 2014 10:02:01 -0500</PostedAt>
<EditAt>Fri, 31 Jan 2014 10:02:31 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="40853" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40853">
<Title>Bits Blog: Investors and Customers Yearn for an Apple iThingamajig</Title>
<Body>
<![CDATA[
    <div class="html-content">Timothy D. Cook, Apple’s chief executive, keeps promising a new product category from Apple, but investors are getting antsy as other product sales start to slow.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F31%2Finvestors-and-customers-yearn-for-an-apple-ithingymajig%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Investors+and+Customers+Yearn+for+an+Apple+iThingamajig" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F31%2Finvestors-and-customers-yearn-for-an-apple-ithingymajig%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Investors+and+Customers+Yearn+for+an+Apple+iThingamajig" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F31%2Finvestors-and-customers-yearn-for-an-apple-ithingymajig%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Investors+and+Customers+Yearn+for+an+Apple+iThingamajig" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F31%2Finvestors-and-customers-yearn-for-an-apple-ithingymajig%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Investors+and+Customers+Yearn+for+an+Apple+iThingamajig" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F31%2Finvestors-and-customers-yearn-for-an-apple-ithingymajig%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Investors+and+Customers+Yearn+for+an+Apple+iThingamajig" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/186530002578/u/0/f/640387/c/34625/s/369323a2/sc/15/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530002578/u/0/f/640387/c/34625/s/369323a2/sc/15/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186530002578/u/0/f/640387/c/34625/s/369323a2/sc/15/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530002578/u/0/f/640387/c/34625/s/369323a2/sc/15/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186530002578/u/0/f/640387/c/34625/s/369323a2/sc/15/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530002578/u/0/f/640387/c/34625/s/369323a2/sc/15/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186530002578/u/0/f/640387/c/34625/s/369323a2/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530002578/u/0/f/640387/c/34625/s/369323a2/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Timothy D. Cook, Apple’s chief executive, keeps promising a new product category from Apple, but investors are getting antsy as other product sales start to slow.      </Summary>
<Website>http://bits.blogs.nytimes.com/2014/01/31/investors-and-customers-yearn-for-an-apple-ithingymajig/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40853/guest@my.umbc.edu/0590f040ef0388f64f1ce6406d8a294d/api/pixel</TrackingUrl>
<Tag>apple-inc</Tag>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>devices</Tag>
<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>Fri, 31 Jan 2014 09:48:10 -0500</PostedAt>
<EditAt>Fri, 31 Jan 2014 15:48:34 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="40852" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40852">
<Title>Innovation: Who Made That First-Person-Shooter Game?</Title>
<Body>
<![CDATA[
    <div class="html-content">And the surprising long-term benefits of playing them.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F02%2F02%2Fmagazine%2Fwho-made-that-first-person-shooter-game.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Innovation%3A+Who+Made+That+First-Person-Shooter+Game%3F" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F02%2F02%2Fmagazine%2Fwho-made-that-first-person-shooter-game.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Innovation%3A+Who+Made+That+First-Person-Shooter+Game%3F" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F02%2F02%2Fmagazine%2Fwho-made-that-first-person-shooter-game.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Innovation%3A+Who+Made+That+First-Person-Shooter+Game%3F" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F02%2F02%2Fmagazine%2Fwho-made-that-first-person-shooter-game.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Innovation%3A+Who+Made+That+First-Person-Shooter+Game%3F" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F02%2F02%2Fmagazine%2Fwho-made-that-first-person-shooter-game.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Innovation%3A+Who+Made+That+First-Person-Shooter+Game%3F" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    </div>
]]>
</Body>
<Summary>And the surprising long-term benefits of playing them.      </Summary>
<Website>http://www.nytimes.com/2014/02/02/magazine/who-made-that-first-person-shooter-game.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40852/guest@my.umbc.edu/c466b1c7b0bec491a303cb23cc9c7323/api/pixel</TrackingUrl>
<Tag>3-d-devices-and-effects</Tag>
<Tag>carmack-john</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>id-software</Tag>
<Tag>inventions-and-patents</Tag>
<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>Fri, 31 Jan 2014 09:18:07 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="40851" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40851">
<Title>Desktop Wallpaper Calendars: February 2014</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <table width="650">
    <tbody>
    <tr>
    <td>
    <div>
    <img src="http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif" alt="" style="max-width: 100%; height: auto;"><br><a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3" alt="" style="max-width: 100%; height: auto;"></a>
    </div>
    </td>
    </tr>
    </tbody>
    </table>
    <p>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 over five 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 February 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 Calendar series. We are regularly looking for creative designers and artists to be featured on Smashing Magazine. Are you one of them?</li>
    </ul>
    <h3>Febrewery</h3>
    <p>“I live in Madison, WI USA, which is famous for its breweries. Wisconsin even named their baseball team “The Brewers.” If you like beer, brats, and lots of cheese, it’s the place for you!” — Designed by <a href="https://www.behance.net/dannygugger" rel="nofollow external" class="bo">Danny Gugger</a> from United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/feb-14-febrewery-full.png" title="Febrewery" rel="nofollow external" class="bo"><img width="500" height="281" alt="Febrewery" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-febrewery-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-febrewery-preview.png" title="Febrewery - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/cal/feb-14-febrewery-cal-320x480.png" title="Febrewery - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/cal/feb-14-febrewery-cal-1020x768.png" title="Febrewery - 1020x768" rel="nofollow external" class="bo">1020×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/cal/feb-14-febrewery-cal-1280x800.png" title="Febrewery - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/cal/feb-14-febrewery-cal-1280x1024.png" title="Febrewery - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/cal/feb-14-febrewery-cal-2560x1440.png" title="Febrewery - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/cal/feb-14-febrewery-cal-1136x640.png" title="Febrewery - 1136x640" rel="nofollow external" class="bo">1136×640</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/nocal/feb-14-febrewery-nocal-320x480.png" title="Febrewery - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/nocal/feb-14-febrewery-nocal-1020x768.png" title="Febrewery - 1020x768" rel="nofollow external" class="bo">1020×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/nocal/feb-14-febrewery-nocal-1280x800.png" title="Febrewery - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/nocal/feb-14-febrewery-nocal-1280x1024.png" title="Febrewery - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/nocal/feb-14-febrewery-nocal-2560x1440.png" title="Febrewery - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/febrewery/nocal/feb-14-febrewery-nocal-1136x640.png" title="Febrewery - 1136x640" rel="nofollow external" class="bo">1136×640</a>    </li>
    </ul>
    <h3>Prints Charming</h3>
    <p>“I’ve been drawing these fingerprint characters for a while. They make people smile.” — Designed by <a href="http://phillustrations.com/" rel="nofollow external" class="bo">Phil Scroggs</a> from United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/feb-14-prints-charming-full.png" title="" rel="nofollow external" class="bo"><img width="500" height="281" alt="" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-prints-charming-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-prints-charming-preview.png" title="" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-320x480.png" title="" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-640x480.png" title="" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-800x480.png" title="" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-800x600.png" title="" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1024x768.png" title="" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1024x1024.png" title="" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1152x864.png" title="" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1280x720.png" title="" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1280x800.png" title="" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1280x960.png" title="" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1280x1024.png" title="" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1400x1050.png" title="" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1440x900.png" title="" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1600x1200.png" title="" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1680x1050.png" title="" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1680x1200.png" title="" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1920x1080.png" title="" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1920x1200.png" title="" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-1920x1440.png" title="" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/cal/feb-14-prints-charming-cal-2560x1440.png" title="" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-320x480.png" title="" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-640x480.png" title="" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-800x480.png" title="" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-800x600.png" title="" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1024x768.png" title="" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1024x1024.png" title="" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1152x864.png" title="" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1280x720.png" title="" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1280x800.png" title="" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1280x960.png" title="" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1280x1024.png" title="" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1400x1050.png" title="" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1440x900.png" title="" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1600x1200.png" title="" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1680x1050.png" title="" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1680x1200.png" title="" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1920x1080.png" title="" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1920x1200.png" title="" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-1920x1440.png" title="" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/prints-charming/nocal/feb-14-prints-charming-nocal-2560x1440.png" title="" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Love Of My Life</h3>
    <p>Designed by <a href="http://www.elisejolan.be" rel="nofollow external" class="bo">Elise Vanoorbeek</a> from Belgium.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/feb-14-love-of-my-life-full.jpg" title="Love of my life" rel="nofollow external" class="bo"><img width="500" height="281" alt="Love of my life" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-love-of-my-life-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-love-of-my-life-preview.jpg" title="Love of my life - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/cal/feb-14-love-of-my-life-cal-800x600.jpg" title="Love of my life - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/cal/feb-14-love-of-my-life-cal-1204x768.jpg" title="Love of my life - 1204x768" rel="nofollow external" class="bo">1204×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/cal/feb-14-love-of-my-life-cal-1280x720.jpg" title="Love of my life - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/cal/feb-14-love-of-my-life-cal-1280x800.jpg" title="Love of my life - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/cal/feb-14-love-of-my-life-cal-1280x960.jpg" title="Love of my life - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/cal/feb-14-love-of-my-life-cal-1600x1200.jpg" title="Love of my life - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/cal/feb-14-love-of-my-life-cal-1680x1050.jpg" title="Love of my life - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/cal/feb-14-love-of-my-life-cal-1680x1200.jpg" title="Love of my life - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/cal/feb-14-love-of-my-life-cal-1920x1080.jpg" title="Love of my life - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/cal/feb-14-love-of-my-life-cal-1920x1200.jpg" title="Love of my life - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/cal/feb-14-love-of-my-life-cal-1920x1440.jpg" title="Love of my life - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/cal/feb-14-love-of-my-life-cal-2560x1440.jpg" title="Love of my life - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/nocal/feb-14-love-of-my-life-nocal-800x600.jpg" title="Love of my life - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/nocal/feb-14-love-of-my-life-nocal-1204x768.jpg" title="Love of my life - 1204x768" rel="nofollow external" class="bo">1204×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/nocal/feb-14-love-of-my-life-nocal-1280x720.jpg" title="Love of my life - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/nocal/feb-14-love-of-my-life-nocal-1280x800.jpg" title="Love of my life - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/nocal/feb-14-love-of-my-life-nocal-1280x960.jpg" title="Love of my life - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/nocal/feb-14-love-of-my-life-nocal-1600x1200.jpg" title="Love of my life - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/nocal/feb-14-love-of-my-life-nocal-1680x1050.jpg" title="Love of my life - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/nocal/feb-14-love-of-my-life-nocal-1680x1200.jpg" title="Love of my life - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/nocal/feb-14-love-of-my-life-nocal-1920x1080.jpg" title="Love of my life - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/nocal/feb-14-love-of-my-life-nocal-1920x1200.jpg" title="Love of my life - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/nocal/feb-14-love-of-my-life-nocal-1920x1440.jpg" title="Love of my life - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-of-my-life/nocal/feb-14-love-of-my-life-nocal-2560x1440.jpg" title="Love of my life - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Do Things With Passion</h3>
    <p>“I’m a big believer in putting your best effort into any and all of your work. Whether you love the project or hate the project, always do it right–do things with passion, or not at all.” — Designed by <a href="http://nicoledesigned.com/" rel="nofollow external" class="bo">Nicole DeMetrick</a> from United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/feb-14-do-things-with-passion-full.png" title="Do Things With Passion" rel="nofollow external" class="bo"><img width="500" height="281" alt="Do Things With Passion" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-do-things-with-passion-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-do-things-with-passion-preview.png" title="Do Things With Passion - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-640x480.png" title="Do Things With Passion - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-800x480.png" title="Do Things With Passion - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-800x600.png" title="Do Things With Passion - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1024x768.png" title="Do Things With Passion - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1024x1024.png" title="Do Things With Passion - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1152x864.png" title="Do Things With Passion - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1280x720.png" title="Do Things With Passion - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1280x800.png" title="Do Things With Passion - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1280x960.png" title="Do Things With Passion - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1280x1024.png" title="Do Things With Passion - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1400x1050.png" title="Do Things With Passion - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1440x900.png" title="Do Things With Passion - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1600x1200.png" title="Do Things With Passion - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1680x1050.png" title="Do Things With Passion - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1680x1200.png" title="Do Things With Passion - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1920x1080.png" title="Do Things With Passion - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1920x1200.png" title="Do Things With Passion - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-1920x1440.png" title="Do Things With Passion - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/cal/feb-14-do-things-with-passion-cal-2560x1440.png" title="Do Things With Passion - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-640x480.png" title="Do Things With Passion - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-800x480.png" title="Do Things With Passion - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-800x600.png" title="Do Things With Passion - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1024x768.png" title="Do Things With Passion - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1024x1024.png" title="Do Things With Passion - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1152x864.png" title="Do Things With Passion - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1280x720.png" title="Do Things With Passion - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1280x800.png" title="Do Things With Passion - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1280x960.png" title="Do Things With Passion - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1280x1024.png" title="Do Things With Passion - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1400x1050.png" title="Do Things With Passion - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1440x900.png" title="Do Things With Passion - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1600x1200.png" title="Do Things With Passion - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1680x1050.png" title="Do Things With Passion - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1680x1200.png" title="Do Things With Passion - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1920x1080.png" title="Do Things With Passion - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1920x1200.png" title="Do Things With Passion - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-1920x1440.png" title="Do Things With Passion - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/do-things-with-passion/nocal/feb-14-do-things-with-passion-nocal-2560x1440.png" title="Do Things With Passion - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Trainee Cupid</h3>
    <p>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/february-14/trainee-cupid/feb-14-trainee-cupid-full.png" title="Trainee Cupid" rel="nofollow external" class="bo"><img width="500" height="281" alt="Trainee Cupid" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-trainee-cupid-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-trainee-cupid-preview.png" title="Trainee Cupid - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-320x480.png" title="Trainee Cupid - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1024x768.png" title="Trainee Cupid - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1024x1024.png" title="Trainee Cupid - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1280x800.png" title="Trainee Cupid - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1280x960.png" title="Trainee Cupid - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1280x1024.png" title="Trainee Cupid - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1400x1050.png" title="Trainee Cupid - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1440x900.png" title="Trainee Cupid - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1600x1200.png" title="Trainee Cupid - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1680x1050.png" title="Trainee Cupid - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1680x1200.png" title="Trainee Cupid - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1920x1080.png" title="Trainee Cupid - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1920x1200.png" title="Trainee Cupid - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1920x1440.png" title="Trainee Cupid - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-2560x1440.png" title="Trainee Cupid - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-640x960.png" title="Trainee Cupid - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1366x768.png" title="Trainee Cupid - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-1600x1050.png" title="Trainee Cupid - 1600x1050" rel="nofollow external" class="bo">1600×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/cal/feb-14-trainee-cupid-cal-2880x1800.png" title="Trainee Cupid - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-320x480.png" title="Trainee Cupid - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1024x768.png" title="Trainee Cupid - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1024x1024.png" title="Trainee Cupid - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1280x800.png" title="Trainee Cupid - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1280x960.png" title="Trainee Cupid - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1280x1024.png" title="Trainee Cupid - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1400x1050.png" title="Trainee Cupid - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1440x900.png" title="Trainee Cupid - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1600x1200.png" title="Trainee Cupid - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1680x1050.png" title="Trainee Cupid - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1680x1200.png" title="Trainee Cupid - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1920x1080.png" title="Trainee Cupid - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1920x1200.png" title="Trainee Cupid - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1920x1440.png" title="Trainee Cupid - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-2560x1440.png" title="Trainee Cupid - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-640x960.png" title="Trainee Cupid - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1366x768.png" title="Trainee Cupid - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-1600x1050.png" title="Trainee Cupid - 1600x1050" rel="nofollow external" class="bo">1600×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/trainee-cupid/nocal/feb-14-trainee-cupid-nocal-2880x1800.png" title="Trainee Cupid - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    </ul>
    <h3>Love Is Timeless</h3>
    <p>“Love is “strange” to find that the differences between people do not exist. Love is timeless.” — Designed by <a href="http://www.silocreativo.com/" rel="nofollow external" class="bo">Verónica Valenzuela</a> from Spain.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/feb-14-love-is-timeless-full.png" title="Love is timeless" rel="nofollow external" class="bo"><img width="500" height="281" alt="Love is timeless" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-love-is-timeless-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-love-is-timeless-preview.png" title="Love is timeless - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/cal/feb-14-love-is-timeless-cal-800x480.png" title="Love is timeless - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/cal/feb-14-love-is-timeless-cal-1024x768.png" title="Love is timeless - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/cal/feb-14-love-is-timeless-cal-1152x864.png" title="Love is timeless - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/cal/feb-14-love-is-timeless-cal-1280x960.png" title="Love is timeless - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/cal/feb-14-love-is-timeless-cal-1440x900.png" title="Love is timeless - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/cal/feb-14-love-is-timeless-cal-1680x1200.png" title="Love is timeless - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/cal/feb-14-love-is-timeless-cal-1920x1080.png" title="Love is timeless - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/cal/feb-14-love-is-timeless-cal-2560x1440.png" title="Love is timeless - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/nocal/feb-14-love-is-timeless-nocal-800x480.png" title="Love is timeless - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/nocal/feb-14-love-is-timeless-nocal-1024x768.png" title="Love is timeless - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/nocal/feb-14-love-is-timeless-nocal-1152x864.png" title="Love is timeless - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/nocal/feb-14-love-is-timeless-nocal-1280x960.png" title="Love is timeless - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/nocal/feb-14-love-is-timeless-nocal-1440x900.png" title="Love is timeless - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/nocal/feb-14-love-is-timeless-nocal-1680x1200.png" title="Love is timeless - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/nocal/feb-14-love-is-timeless-nocal-1920x1080.png" title="Love is timeless - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-timeless/nocal/feb-14-love-is-timeless-nocal-2560x1440.png" title="Love is timeless - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>I Dream Of Painting</h3>
    <p>“I was inspired by a quote from Van Gogh on painting” — 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/february-14/i-dream-of-painting/feb-14-i-dream-of-painting-full.jpg" title="I Dream of Painting" rel="nofollow external" class="bo"><img width="500" height="281" alt="I Dream of Painting" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-i-dream-of-painting-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-i-dream-of-painting-preview.jpg" title="I Dream of Painting - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-dream-of-painting/cal/feb-14-i-dream-of-painting-cal-1024x768.jpg" title="I Dream of Painting - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-dream-of-painting/cal/feb-14-i-dream-of-painting-cal-1280x1024.jpg" title="I Dream of Painting - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-dream-of-painting/cal/feb-14-i-dream-of-painting-cal-1680x1050.jpg" title="I Dream of Painting - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-dream-of-painting/cal/feb-14-i-dream-of-painting-cal-1680x1200.jpg" title="I Dream of Painting - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-dream-of-painting/cal/feb-14-i-dream-of-painting-cal-1920x1080.jpg" title="I Dream of Painting - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-dream-of-painting/nocal/feb-14-i-dream-of-painting-nocal-1024x768.jpg" title="I Dream of Painting - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-dream-of-painting/nocal/feb-14-i-dream-of-painting-nocal-1280x1024.jpg" title="I Dream of Painting - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-dream-of-painting/nocal/feb-14-i-dream-of-painting-nocal-1680x1050.jpg" title="I Dream of Painting - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-dream-of-painting/nocal/feb-14-i-dream-of-painting-nocal-1680x1200.jpg" title="I Dream of Painting - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-dream-of-painting/nocal/feb-14-i-dream-of-painting-nocal-1920x1080.jpg" title="I Dream of Painting - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>    </li>
    </ul>
    <h3>Love &amp; Happiness</h3>
    <p>“We flourish together with love and happiness.” — Designed by <a href="http://www.corporate3design.com/" rel="nofollow external" class="bo">Amalia Van Bloom</a> from United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/feb-14-Love-and-Happiness-full.jpg" title="Love and Happiness" rel="nofollow external" class="bo"><img width="500" height="281" alt="Love and Happiness" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-Love-and-Happiness-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-Love-and-Happiness-preview.jpg" title="Love and Happiness - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/cal/feb-14-Love-and-Happiness-cal-1024x768.jpg" title="Love and Happiness - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/cal/feb-14-Love-and-Happiness-cal-1280x800.jpg" title="Love and Happiness - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/cal/feb-14-Love-and-Happiness-cal-1280x1024.jpg" title="Love and Happiness - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/cal/feb-14-Love-and-Happiness-cal-1440x900.jpg" title="Love and Happiness - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/cal/feb-14-Love-and-Happiness-cal-1920x1200.jpg" title="Love and Happiness - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/cal/feb-14-Love-and-Happiness-cal-2560x1440.jpg" title="Love and Happiness - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/cal/feb-14-Love-and-Happiness-cal-640x960.jpg" title="Love and Happiness - 640x960" rel="nofollow external" class="bo">640×960</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/nocal/feb-14-Love-and-Happiness-nocal-1024x768.jpg" title="Love and Happiness - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/nocal/feb-14-Love-and-Happiness-nocal-1280x800.jpg" title="Love and Happiness - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/nocal/feb-14-Love-and-Happiness-nocal-1280x1024.jpg" title="Love and Happiness - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/nocal/feb-14-Love-and-Happiness-nocal-1440x900.jpg" title="Love and Happiness - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/nocal/feb-14-Love-and-Happiness-nocal-1920x1200.jpg" title="Love and Happiness - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/nocal/feb-14-Love-and-Happiness-nocal-2560x1440.jpg" title="Love and Happiness - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/Love-and-Happiness/nocal/feb-14-Love-and-Happiness-nocal-640x960.jpg" title="Love and Happiness - 640x960" rel="nofollow external" class="bo">640×960</a>    </li>
    </ul>
    <h3>Love Is In The Air</h3>
    <p>“February is one of the coldest months of the year, and I think that love is the only thing that can warm it.” — Designed by <a href="http://be.net/designeritza" rel="nofollow external" class="bo">Raluca Dragos</a> from Romania.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/feb-14-balloon-love-is-in-the-air-full.png" title="Love is in the air" rel="nofollow external" class="bo"><img width="500" height="281" alt="Love is in the air" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-balloon-love-is-in-the-air-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-balloon-love-is-in-the-air-preview.png" title="Love is in the air - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-320x480.png" title="Love is in the air - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-640x480.png" title="Love is in the air - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-800x480.png" title="Love is in the air - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-800x600.png" title="Love is in the air - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-1024x1024.png" title="Love is in the air - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-1152x864.png" title="Love is in the air - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-1280x720.png" title="Love is in the air - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-1280x800.png" title="Love is in the air - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-1280x960.png" title="Love is in the air - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-1400x1050.png" title="Love is in the air - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-1440x900.png" title="Love is in the air - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-1600x1200.png" title="Love is in the air - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-1680x1200.png" title="Love is in the air - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-1920x1080.png" title="Love is in the air - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-1920x1200.png" title="Love is in the air - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-1920x1440.png" title="Love is in the air - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/cal/feb-14-balloon-love-is-in-the-air-cal-2560x1440.png" title="Love is in the air - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-320x480.png" title="Love is in the air - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-640x480.png" title="Love is in the air - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-800x480.png" title="Love is in the air - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-800x600.png" title="Love is in the air - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-1024x1024.png" title="Love is in the air - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-1152x864.png" title="Love is in the air - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-1280x720.png" title="Love is in the air - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-1280x800.png" title="Love is in the air - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-1280x960.png" title="Love is in the air - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-1400x1050.png" title="Love is in the air - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-1440x900.png" title="Love is in the air - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-1600x1200.png" title="Love is in the air - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-1680x1200.png" title="Love is in the air - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-1920x1080.png" title="Love is in the air - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-1920x1200.png" title="Love is in the air - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-1920x1440.png" title="Love is in the air - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/balloon-love-is-in-the-air/nocal/feb-14-balloon-love-is-in-the-air-nocal-2560x1440.png" title="Love is in the air - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Happy Valentine!</h3>
    <p>“I’ve been designing wallpapers since two years with the picture of my Manka dolls. My inspiration for February was Valentine’s Day.” — Designed by <a href="http://vattacukorhajulany.cafeblog.hu" rel="nofollow external" class="bo">Monika Horvath</a> from Hungary.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/feb-14-happy-valentine-full.jpg" title="Happy Valentine!" rel="nofollow external" class="bo"><img width="500" height="281" alt="Happy Valentine!" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-happy-valentine-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-happy-valentine-preview.jpg" title="Happy Valentine! - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/cal/feb-14-happy-valentine-cal-320x480.jpg" title="Happy Valentine! - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/cal/feb-14-happy-valentine-cal-800x480.jpg" title="Happy Valentine! - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/cal/feb-14-happy-valentine-cal-1024x768.jpg" title="Happy Valentine! - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/cal/feb-14-happy-valentine-cal-1280x800.jpg" title="Happy Valentine! - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/cal/feb-14-happy-valentine-cal-1280x1024.jpg" title="Happy Valentine! - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/cal/feb-14-happy-valentine-cal-1440x900.jpg" title="Happy Valentine! - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/cal/feb-14-happy-valentine-cal-1920x1080.jpg" title="Happy Valentine! - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/cal/feb-14-happy-valentine-cal-1920x1200.jpg" title="Happy Valentine! - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/cal/feb-14-happy-valentine-cal-1366x768.jpg" title="Happy Valentine! - 1366x768" rel="nofollow external" class="bo">1366×768</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/nocal/feb-14-happy-valentine-nocal-320x480.jpg" title="Happy Valentine! - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/nocal/feb-14-happy-valentine-nocal-800x480.jpg" title="Happy Valentine! - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/nocal/feb-14-happy-valentine-nocal-1024x768.jpg" title="Happy Valentine! - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/nocal/feb-14-happy-valentine-nocal-1280x800.jpg" title="Happy Valentine! - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/nocal/feb-14-happy-valentine-nocal-1280x1024.jpg" title="Happy Valentine! - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/nocal/feb-14-happy-valentine-nocal-1440x900.jpg" title="Happy Valentine! - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/nocal/feb-14-happy-valentine-nocal-1920x1080.jpg" title="Happy Valentine! - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/nocal/feb-14-happy-valentine-nocal-1920x1200.jpg" title="Happy Valentine! - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentine/nocal/feb-14-happy-valentine-nocal-1366x768.jpg" title="Happy Valentine! - 1366x768" rel="nofollow external" class="bo">1366×768</a>    </li>
    </ul>
    <h3>How Space Really Looks Like</h3>
    <p>Designed by <a href="https://www.behance.net/ninageo" rel="nofollow external" class="bo">Nina Geometrieva</a> from Macedonia.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/feb-14-how-space-really-looks-like-full.jpg" title="How Space Really Looks Like" rel="nofollow external" class="bo"><img width="500" height="281" alt="How Space Really Looks Like" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-how-space-really-looks-like-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-how-space-really-looks-like-preview.jpg" title="How Space Really Looks Like - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/cal/feb-14-how-space-really-looks-like-cal-1024x768.jpg" title="How Space Really Looks Like - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/cal/feb-14-how-space-really-looks-like-cal-1024x1024.jpg" title="How Space Really Looks Like - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/cal/feb-14-how-space-really-looks-like-cal-1152x864.jpg" title="How Space Really Looks Like - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/cal/feb-14-how-space-really-looks-like-cal-1280x800.jpg" title="How Space Really Looks Like - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/cal/feb-14-how-space-really-looks-like-cal-1440x900.jpg" title="How Space Really Looks Like - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/cal/feb-14-how-space-really-looks-like-cal-1680x1050.jpg" title="How Space Really Looks Like - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/cal/feb-14-how-space-really-looks-like-cal-1920x1080.jpg" title="How Space Really Looks Like - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/cal/feb-14-how-space-really-looks-like-cal-1920x1200.jpg" title="How Space Really Looks Like - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/cal/feb-14-how-space-really-looks-like-cal-2560x1440.jpg" title="How Space Really Looks Like - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/cal/feb-14-how-space-really-looks-like-cal-2880x1800.jpg" title="How Space Really Looks Like - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/cal/feb-14-how-space-really-looks-like-cal-1136x640.jpg" title="How Space Really Looks Like - 1136x640" rel="nofollow external" class="bo">1136×640</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/nocal/feb-14-how-space-really-looks-like-nocal-1024x768.jpg" title="How Space Really Looks Like - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/nocal/feb-14-how-space-really-looks-like-nocal-1024x1024.jpg" title="How Space Really Looks Like - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/nocal/feb-14-how-space-really-looks-like-nocal-1152x864.jpg" title="How Space Really Looks Like - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/nocal/feb-14-how-space-really-looks-like-nocal-1280x800.jpg" title="How Space Really Looks Like - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/nocal/feb-14-how-space-really-looks-like-nocal-1440x900.jpg" title="How Space Really Looks Like - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/nocal/feb-14-how-space-really-looks-like-nocal-1680x1050.jpg" title="How Space Really Looks Like - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/nocal/feb-14-how-space-really-looks-like-nocal-1920x1080.jpg" title="How Space Really Looks Like - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/nocal/feb-14-how-space-really-looks-like-nocal-1920x1200.jpg" title="How Space Really Looks Like - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/nocal/feb-14-how-space-really-looks-like-nocal-2560x1440.jpg" title="How Space Really Looks Like - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/nocal/feb-14-how-space-really-looks-like-nocal-2880x1800.jpg" title="How Space Really Looks Like - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/how-space-really-looks-like/nocal/feb-14-how-space-really-looks-like-nocal-1136x640.jpg" title="How Space Really Looks Like - 1136x640" rel="nofollow external" class="bo">1136×640</a>    </li>
    </ul>
    <h3>Sochi 2014</h3>
    <p>“We’ve come up with a dashing wallpaper to celebrate the 2014 Winter Olympics held in Sochi, Russia. It might be a bit cold this time of the year but adrenaline of the competition will surely get us active!” — Designed by <a href="http://www.printsome.com" rel="nofollow external" class="bo">Printsome</a> from United Kingdom.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/feb-14-sochi-2014-full.jpg" title="Sochi 2014" rel="nofollow external" class="bo"><img width="500" height="281" alt="Sochi 2014" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-sochi-2014-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-sochi-2014-preview.jpg" title="Sochi 2014 - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-320x480.jpg" title="Sochi 2014 - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-640x480.jpg" title="Sochi 2014 - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-800x480.jpg" title="Sochi 2014 - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-800x600.jpg" title="Sochi 2014 - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1024x768.jpg" title="Sochi 2014 - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1024x1024.jpg" title="Sochi 2014 - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1152x864.jpg" title="Sochi 2014 - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1280x720.jpg" title="Sochi 2014 - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1280x800.jpg" title="Sochi 2014 - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1280x960.jpg" title="Sochi 2014 - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1280x1024.jpg" title="Sochi 2014 - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1400x1050.jpg" title="Sochi 2014 - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1440x900.jpg" title="Sochi 2014 - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1600x1200.jpg" title="Sochi 2014 - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1680x1050.jpg" title="Sochi 2014 - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1680x1200.jpg" title="Sochi 2014 - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1920x1080.jpg" title="Sochi 2014 - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1920x1200.jpg" title="Sochi 2014 - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-1920x1440.jpg" title="Sochi 2014 - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-2560x1440.jpg" title="Sochi 2014 - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/cal/feb-14-sochi-2014-cal-2880x1800.jpg" title="Sochi 2014 - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-320x480.jpg" title="Sochi 2014 - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-640x480.jpg" title="Sochi 2014 - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-800x480.jpg" title="Sochi 2014 - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-800x600.jpg" title="Sochi 2014 - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1024x768.jpg" title="Sochi 2014 - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1024x1024.jpg" title="Sochi 2014 - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1152x864.jpg" title="Sochi 2014 - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1280x720.jpg" title="Sochi 2014 - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1280x800.jpg" title="Sochi 2014 - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1280x960.jpg" title="Sochi 2014 - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1280x1024.jpg" title="Sochi 2014 - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1400x1050.jpg" title="Sochi 2014 - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1440x900.jpg" title="Sochi 2014 - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1600x1200.jpg" title="Sochi 2014 - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1680x1050.jpg" title="Sochi 2014 - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1680x1200.jpg" title="Sochi 2014 - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1920x1080.jpg" title="Sochi 2014 - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1920x1200.jpg" title="Sochi 2014 - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-1920x1440.jpg" title="Sochi 2014 - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-2560x1440.jpg" title="Sochi 2014 - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sochi-2014/nocal/feb-14-sochi-2014-nocal-2880x1800.jpg" title="Sochi 2014 - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    </ul>
    <h3>Let the Games Begin!</h3>
    <p>“February 2014 Calendar – 2014 Winter Olympics” — Designed by <a href="http://www.corporate3design.com/" rel="nofollow external" class="bo">Marcus White</a> from Omaha, Nebraska.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/feb-14-let-the-games-begin-full.jpg" title="Let the Games Begin!" rel="nofollow external" class="bo"><img width="500" height="281" alt="Let the Games Begin!" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-let-the-games-begin-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-let-the-games-begin-preview.jpg" title="Let the Games Begin! - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/cal/feb-14-let-the-games-begin-cal-320x480.jpg" title="Let the Games Begin! - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/cal/feb-14-let-the-games-begin-cal-640x480.jpg" title="Let the Games Begin! - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/cal/feb-14-let-the-games-begin-cal-800x480.jpg" title="Let the Games Begin! - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/cal/feb-14-let-the-games-begin-cal-1280x720.jpg" title="Let the Games Begin! - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/cal/feb-14-let-the-games-begin-cal-1440x900.jpg" title="Let the Games Begin! - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/cal/feb-14-let-the-games-begin-cal-1680x1050.jpg" title="Let the Games Begin! - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/cal/feb-14-let-the-games-begin-cal-1920x1080.jpg" title="Let the Games Begin! - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/cal/feb-14-let-the-games-begin-cal-1920x1200.jpg" title="Let the Games Begin! - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/cal/feb-14-let-the-games-begin-cal-1920x1440.jpg" title="Let the Games Begin! - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/cal/feb-14-let-the-games-begin-cal-2560x1440.jpg" title="Let the Games Begin! - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/nocal/feb-14-let-the-games-begin-nocal-320x480.jpg" title="Let the Games Begin! - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/nocal/feb-14-let-the-games-begin-nocal-640x480.jpg" title="Let the Games Begin! - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/nocal/feb-14-let-the-games-begin-nocal-800x480.jpg" title="Let the Games Begin! - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/nocal/feb-14-let-the-games-begin-nocal-1280x720.jpg" title="Let the Games Begin! - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/nocal/feb-14-let-the-games-begin-nocal-1440x900.jpg" title="Let the Games Begin! - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/nocal/feb-14-let-the-games-begin-nocal-1680x1050.jpg" title="Let the Games Begin! - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/nocal/feb-14-let-the-games-begin-nocal-1920x1080.jpg" title="Let the Games Begin! - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/nocal/feb-14-let-the-games-begin-nocal-1920x1200.jpg" title="Let the Games Begin! - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/nocal/feb-14-let-the-games-begin-nocal-1920x1440.jpg" title="Let the Games Begin! - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-the-games-begin/nocal/feb-14-let-the-games-begin-nocal-2560x1440.jpg" title="Let the Games Begin! - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Don’t Miss Out On Winter Fun</h3>
    <p>“Only a month of winter left! It’s time to get up from our computers and enjoy the snow while it’s still there!” — Designed by <a href="http://kubyshkin.ru" rel="nofollow external" class="bo">Dmitriy Kubyshkin</a> from Russia.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/feb-14-dont-miss-out-on-winter-fun-full.jpg" title="don't miss out on winter fun" rel="nofollow external" class="bo"><img width="500" height="281" alt="don't miss out on winter fun" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-dont-miss-out-on-winter-fun-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-dont-miss-out-on-winter-fun-preview.jpg" title="don't miss out on winter fun - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-320x480.jpeg" title="don't miss out on winter fun - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-800x600.jpeg" title="don't miss out on winter fun - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-1024x768.jpeg" title="don't miss out on winter fun - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-1152x864.jpeg" title="don't miss out on winter fun - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-1280x720.jpeg" title="don't miss out on winter fun - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-1280x800.jpeg" title="don't miss out on winter fun - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-1280x960.jpeg" title="don't miss out on winter fun - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-1400x1050.jpeg" title="don't miss out on winter fun - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-1440x900.jpeg" title="don't miss out on winter fun - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-1600x1200.jpeg" title="don't miss out on winter fun - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-1680x1050.jpeg" title="don't miss out on winter fun - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-1920x1080.jpeg" title="don't miss out on winter fun - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-1920x1200.jpeg" title="don't miss out on winter fun - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-1920x1440.jpeg" title="don't miss out on winter fun - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-2560x1440.jpeg" title="don't miss out on winter fun - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/cal/feb-14-dont-miss-out-on-winter-fun-cal-2560x1600.jpeg" title="don't miss out on winter fun - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-320x480.jpeg" title="don't miss out on winter fun - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-800x600.jpeg" title="don't miss out on winter fun - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-1024x768.jpeg" title="don't miss out on winter fun - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-1152x864.jpeg" title="don't miss out on winter fun - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-1280x720.jpeg" title="don't miss out on winter fun - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-1280x800.jpeg" title="don't miss out on winter fun - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-1280x960.jpeg" title="don't miss out on winter fun - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-1400x1050.jpeg" title="don't miss out on winter fun - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-1440x900.jpeg" title="don't miss out on winter fun - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-1600x1200.jpeg" title="don't miss out on winter fun - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-1680x1050.jpeg" title="don't miss out on winter fun - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-1920x1080.jpeg" title="don't miss out on winter fun - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-1920x1200.jpeg" title="don't miss out on winter fun - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-1920x1440.jpeg" title="don't miss out on winter fun - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-2560x1440.jpeg" title="don't miss out on winter fun - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/dont-miss-out-on-winter-fun/nocal/feb-14-dont-miss-out-on-winter-fun-nocal-2560x1600.jpeg" title="don't miss out on winter fun - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>    </li>
    </ul>
    <h3>Company For The Cold</h3>
    <p>“The last dregs of winter can be tough to get through. So I made this little guy to keep me company when its cold out!” — Designed by <a href="http://sydneyjbarnes.tumblr.com/" rel="nofollow external" class="bo">Sydney Jane Barnes</a> from Canada.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/company-for-the-cold/feb-14-company-for-the-cold-full.png" title="Company for the Cold" rel="nofollow external" class="bo"><img width="500" height="281" alt="Company for the Cold" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-company-for-the-cold-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-company-for-the-cold-preview.png" title="Company for the Cold - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/company-for-the-cold/cal/feb-14-company-for-the-cold-cal-1280x1024.png" title="Company for the Cold - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/company-for-the-cold/cal/feb-14-company-for-the-cold-cal-1400x1050.png" title="Company for the Cold - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/company-for-the-cold/cal/feb-14-company-for-the-cold-cal-1680x1050.png" title="Company for the Cold - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/company-for-the-cold/cal/feb-14-company-for-the-cold-cal-2560x1440.png" title="Company for the Cold - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/company-for-the-cold/nocal/feb-14-company-for-the-cold-nocal-1280x1024.png" title="Company for the Cold - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/company-for-the-cold/nocal/feb-14-company-for-the-cold-nocal-1400x1050.png" title="Company for the Cold - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/company-for-the-cold/nocal/feb-14-company-for-the-cold-nocal-1680x1050.png" title="Company for the Cold - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/company-for-the-cold/nocal/feb-14-company-for-the-cold-nocal-2560x1440.png" title="Company for the Cold - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>“Principles Of Good Design” by Dieter Rams</h3>
    <p>“The simplicity seen in the work of Dieter Rams which has ensured his designs from the 50s and 60s still hold a strong appeal.” — Designed by <a href="http://www.vinuworks.com" rel="nofollow external" class="bo">Vinu Chaitanya</a> from India.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/feb-14-principles-of-good-design--dieter-rams-full.png" title="Principles of Good Design- Dieter Rams" rel="nofollow external" class="bo"><img width="500" height="281" alt="Principles of Good Design- Dieter Rams" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-principles-of-good-design-dieter-rams-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-principles-of-good-design-dieter-rams-preview.png" title="Principles of Good Design- Dieter Rams - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-320x480.png" title="Principles of Good Design- Dieter Rams - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-640x480.png" title="Principles of Good Design- Dieter Rams - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-800x480.png" title="Principles of Good Design- Dieter Rams - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-800x600.png" title="Principles of Good Design- Dieter Rams - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1024x768.png" title="Principles of Good Design- Dieter Rams - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1024x1024.png" title="Principles of Good Design- Dieter Rams - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1152x864.png" title="Principles of Good Design- Dieter Rams - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1280x720.png" title="Principles of Good Design- Dieter Rams - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1280x800.png" title="Principles of Good Design- Dieter Rams - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1280x960.png" title="Principles of Good Design- Dieter Rams - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1280x1024.png" title="Principles of Good Design- Dieter Rams - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1400x1050.png" title="Principles of Good Design- Dieter Rams - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1440x900.png" title="Principles of Good Design- Dieter Rams - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1600x1200.png" title="Principles of Good Design- Dieter Rams - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1680x1050.png" title="Principles of Good Design- Dieter Rams - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1680x1200.png" title="Principles of Good Design- Dieter Rams - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1920x1080.png" title="Principles of Good Design- Dieter Rams - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1920x1200.png" title="Principles of Good Design- Dieter Rams - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-1920x1440.png" title="Principles of Good Design- Dieter Rams - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/cal/feb-14-principles-of-good-design--dieter-rams-cal-2560x1440.png" title="Principles of Good Design- Dieter Rams - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-320x480.png" title="Principles of Good Design- Dieter Rams - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-640x480.png" title="Principles of Good Design- Dieter Rams - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-800x480.png" title="Principles of Good Design- Dieter Rams - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-800x600.png" title="Principles of Good Design- Dieter Rams - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1024x1024.png" title="Principles of Good Design- Dieter Rams - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1152x864.png" title="Principles of Good Design- Dieter Rams - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1280x720.png" title="Principles of Good Design- Dieter Rams - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1280x800.png" title="Principles of Good Design- Dieter Rams - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1280x960.png" title="Principles of Good Design- Dieter Rams - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1280x1024.png" title="Principles of Good Design- Dieter Rams - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1400x1050.png" title="Principles of Good Design- Dieter Rams - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1440x900.png" title="Principles of Good Design- Dieter Rams - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1600x1200.png" title="Principles of Good Design- Dieter Rams - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1680x1050.png" title="Principles of Good Design- Dieter Rams - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1680x1200.png" title="Principles of Good Design- Dieter Rams - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1920x1080.png" title="Principles of Good Design- Dieter Rams - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1920x1200.png" title="Principles of Good Design- Dieter Rams - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-1920x1440.png" title="Principles of Good Design- Dieter Rams - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/principles-of-good-design--dieter-rams/nocal/feb-14-principles-of-good-design--dieter-rams-nocal-2560x1440.png" title="Principles of Good Design- Dieter Rams - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Pink Rose</h3>
    <p>Designed by <a href="http://myphotoshopbrushes.com" rel="nofollow external" class="bo">MyPhotoshopBrushes</a> from Poland.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/feb-14-pink-rose-full.png" title="Pink Rose" rel="nofollow external" class="bo"><img width="500" height="281" alt="Pink Rose" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-pink-rose-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-pink-rose-preview.png" title="Pink Rose - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/cal/feb-14-pink-rose-cal-800x600.png" title="Pink Rose - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/cal/feb-14-pink-rose-cal-1024x768.png" title="Pink Rose - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/cal/feb-14-pink-rose-cal-1152x864.png" title="Pink Rose - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/cal/feb-14-pink-rose-cal-1280x720.png" title="Pink Rose - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/cal/feb-14-pink-rose-cal-1280x800.png" title="Pink Rose - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/cal/feb-14-pink-rose-cal-1400x1050.png" title="Pink Rose - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/cal/feb-14-pink-rose-cal-1440x900.png" title="Pink Rose - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/cal/feb-14-pink-rose-cal-1600x1200.png" title="Pink Rose - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/cal/feb-14-pink-rose-cal-1680x1050.png" title="Pink Rose - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/cal/feb-14-pink-rose-cal-1920x1200.png" title="Pink Rose - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/cal/feb-14-pink-rose-cal-2560x1440.png" title="Pink Rose - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/nocal/feb-14-pink-rose-nocal-800x600.png" title="Pink Rose - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/nocal/feb-14-pink-rose-nocal-1024x768.png" title="Pink Rose - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/nocal/feb-14-pink-rose-nocal-1152x864.png" title="Pink Rose - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/nocal/feb-14-pink-rose-nocal-1280x720.png" title="Pink Rose - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/nocal/feb-14-pink-rose-nocal-1280x800.png" title="Pink Rose - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/nocal/feb-14-pink-rose-nocal-1400x1050.png" title="Pink Rose - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/nocal/feb-14-pink-rose-nocal-1440x900.png" title="Pink Rose - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/nocal/feb-14-pink-rose-nocal-1600x1200.png" title="Pink Rose - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/nocal/feb-14-pink-rose-nocal-1680x1050.png" title="Pink Rose - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/nocal/feb-14-pink-rose-nocal-1920x1200.png" title="Pink Rose - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/pink-rose/nocal/feb-14-pink-rose-nocal-2560x1440.png" title="Pink Rose - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Valentine Kitties</h3>
    <p>“Valentine’s day is coming, even kitties can be passionate. This romantic day is a perfect time to express your love!” — Designed by <a href="http://www.thesyne.com" rel="nofollow external" class="bo">William Ricardi Setyono</a> from Indonesia.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/feb-14-valentine-kitties-full.png" title="Valentine Kitties" rel="nofollow external" class="bo"><img width="500" height="281" alt="Valentine Kitties" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-valentine-kitties-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-valentine-kitties-preview.png" title="Valentine Kitties - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/cal/feb-14-valentine-kitties-cal-1024x768.png" title="Valentine Kitties - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/cal/feb-14-valentine-kitties-cal-1280x800.png" title="Valentine Kitties - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/cal/feb-14-valentine-kitties-cal-1280x960.png" title="Valentine Kitties - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/cal/feb-14-valentine-kitties-cal-1600x1200.png" title="Valentine Kitties - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/cal/feb-14-valentine-kitties-cal-1680x1050.png" title="Valentine Kitties - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/cal/feb-14-valentine-kitties-cal-1920x1200.png" title="Valentine Kitties - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/cal/feb-14-valentine-kitties-cal-1920x1440.png" title="Valentine Kitties - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/nocal/feb-14-valentine-kitties-nocal-1024x768.png" title="Valentine Kitties - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/nocal/feb-14-valentine-kitties-nocal-1280x800.png" title="Valentine Kitties - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/nocal/feb-14-valentine-kitties-nocal-1280x960.png" title="Valentine Kitties - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/nocal/feb-14-valentine-kitties-nocal-1600x1200.png" title="Valentine Kitties - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/nocal/feb-14-valentine-kitties-nocal-1680x1050.png" title="Valentine Kitties - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/nocal/feb-14-valentine-kitties-nocal-1920x1200.png" title="Valentine Kitties - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/valentine-kitties/nocal/feb-14-valentine-kitties-nocal-1920x1440.png" title="Valentine Kitties - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>    </li>
    </ul>
    <h3>Spread Light, Spread Love</h3>
    <p>“A young office clerk and a rockabilly girl? Well, we didn’t see that coming. Good job, Cupid! Don’t forget your flameless candles and Starlightz for this Valentine’s Day. Spread light, spread love!” — Designed by <a href="http://www.lights.com" rel="nofollow external" class="bo">Lights.com Team</a> from United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/feb-14-spread-light-spread-love-full.jpg" title="Spread light, spread love" rel="nofollow external" class="bo"><img width="500" height="281" alt="Spread light, spread love" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-spread-light-spread-love-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-spread-light-spread-love-preview.jpg" title="Spread light, spread love - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-320x480.jpg" title="Spread light, spread love - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-640x480.jpg" title="Spread light, spread love - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-800x480.jpg" title="Spread light, spread love - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-800x600.jpg" title="Spread light, spread love - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1024x768.jpg" title="Spread light, spread love - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1152x864.jpg" title="Spread light, spread love - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1280x720.jpg" title="Spread light, spread love - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1280x800.jpg" title="Spread light, spread love - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1280x960.jpg" title="Spread light, spread love - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1280x1024.jpg" title="Spread light, spread love - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1400x1050.jpg" title="Spread light, spread love - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1440x900.jpg" title="Spread light, spread love - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1680x1050.jpg" title="Spread light, spread love - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1680x1200.jpg" title="Spread light, spread love - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1920x1080.jpg" title="Spread light, spread love - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1920x1200.jpg" title="Spread light, spread love - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1920x1440.jpg" title="Spread light, spread love - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-2560x1440.jpg" title="Spread light, spread love - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-640x960.jpg" title="Spread light, spread love - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-640x1136.jpg" title="Spread light, spread love - 640x1136" rel="nofollow external" class="bo">640×1136</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1040x1360.jpg" title="Spread light, spread love - 1040x1360" rel="nofollow external" class="bo">1040×1360</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-1040x1536.jpg" title="Spread light, spread love - 1040x1536" rel="nofollow external" class="bo">1040×1536</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-2560x1600.jpg" title="Spread light, spread love - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-2880x1800.jpg" title="Spread light, spread love - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/cal/feb-14-spread-light-spread-love-cal-2048x2048.jpg" title="Spread light, spread love - 2048x2048" rel="nofollow external" class="bo">2048×2048</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-320x480.jpg" title="Spread light, spread love - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-640x480.jpg" title="Spread light, spread love - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-800x480.jpg" title="Spread light, spread love - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-800x600.jpg" title="Spread light, spread love - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1024x768.jpg" title="Spread light, spread love - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1152x864.jpg" title="Spread light, spread love - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1280x720.jpg" title="Spread light, spread love - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1280x800.jpg" title="Spread light, spread love - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1280x960.jpg" title="Spread light, spread love - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1280x1024.jpg" title="Spread light, spread love - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1400x1050.jpg" title="Spread light, spread love - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1440x900.jpg" title="Spread light, spread love - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1600x1200.jpg" title="Spread light, spread love - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1680x1050.jpg" title="Spread light, spread love - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1680x1200.jpg" title="Spread light, spread love - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1920x1080.jpg" title="Spread light, spread love - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1920x1200.jpg" title="Spread light, spread love - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1920x1440.jpg" title="Spread light, spread love - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-2560x1440.jpg" title="Spread light, spread love - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-640x960.jpg" title="Spread light, spread love - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-640x1136.jpg" title="Spread light, spread love - 640x1136" rel="nofollow external" class="bo">640×1136</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1040x1360.jpg" title="Spread light, spread love - 1040x1360" rel="nofollow external" class="bo">1040×1360</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1040x1536.jpg" title="Spread light, spread love - 1040x1536" rel="nofollow external" class="bo">1040×1536</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-1080x1920.jpg" title="Spread light, spread love - 1080x1920" rel="nofollow external" class="bo">1080×1920</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-2560x1600.jpg" title="Spread light, spread love - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-2880x1800.jpg" title="Spread light, spread love - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/spread-light-spread-love/nocal/feb-14-spread-light-spread-love-nocal-2048x2048.jpg" title="Spread light, spread love - 2048x2048" rel="nofollow external" class="bo">2048×2048</a>    </li>
    </ul>
    <h3>I Got You Babe</h3>
    <p>Designed by <a href="http://www.fuzzproductions.com" rel="nofollow external" class="bo">Chris Macholz at Fuzz</a> from New York, NY.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/feb-14-i-got-you-babe-full.png" title="I Got You Babe" rel="nofollow external" class="bo"><img width="500" height="281" alt="I Got You Babe" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-i-got-you-babe-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-i-got-you-babe-preview.png" title="I Got You Babe - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/cal/feb-14-i-got-you-babe-cal-1024x768.png" title="I Got You Babe - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/cal/feb-14-i-got-you-babe-cal-1280x720.png" title="I Got You Babe - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/cal/feb-14-i-got-you-babe-cal-1280x800.png" title="I Got You Babe - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/cal/feb-14-i-got-you-babe-cal-1440x900.png" title="I Got You Babe - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/cal/feb-14-i-got-you-babe-cal-1680x1050.png" title="I Got You Babe - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/cal/feb-14-i-got-you-babe-cal-1920x1080.png" title="I Got You Babe - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/cal/feb-14-i-got-you-babe-cal-2560x1440.png" title="I Got You Babe - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/cal/feb-14-i-got-you-babe-cal-2048x1536.png" title="I Got You Babe - 2048x1536" rel="nofollow external" class="bo">2048×1536</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/nocal/feb-14-i-got-you-babe-nocal-1024x768.png" title="I Got You Babe - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/nocal/feb-14-i-got-you-babe-nocal-1280x720.png" title="I Got You Babe - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/nocal/feb-14-i-got-you-babe-nocal-1280x800.png" title="I Got You Babe - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/nocal/feb-14-i-got-you-babe-nocal-1440x900.png" title="I Got You Babe - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/nocal/feb-14-i-got-you-babe-nocal-1680x1050.png" title="I Got You Babe - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/nocal/feb-14-i-got-you-babe-nocal-1920x1080.png" title="I Got You Babe - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/nocal/feb-14-i-got-you-babe-nocal-2560x1440.png" title="I Got You Babe - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/i-got-you-babe/nocal/feb-14-i-got-you-babe-nocal-2048x1536.png" title="I Got You Babe - 2048x1536" rel="nofollow external" class="bo">2048×1536</a>    </li>
    </ul>
    <h3>Wrap Yourself With Love</h3>
    <p>“This was an exploration with handmade type. I am not an illustrator so this was way out of my comfort zone. The original design of the type and heart was all created by hand then scanned in.” — Designed by <a href="http://www.corporate3design.com" rel="nofollow external" class="bo">Travis Bellinghausen</a> from United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/feb-14-wrap-yourself-with-love-full.jpg" title="Wrap Yourself With Love" rel="nofollow external" class="bo"><img width="500" height="281" alt="Wrap Yourself With Love" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-wrap-yourself-with-love-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-wrap-yourself-with-love-preview.jpg" title="Wrap Yourself With Love - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/cal/feb-14-wrap-yourself-with-love-cal-640x960.jpg" title="Wrap Yourself With Love - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/cal/feb-14-wrap-yourself-with-love-cal-1024x768.jpg" title="Wrap Yourself With Love - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/cal/feb-14-wrap-yourself-with-love-cal-1280x800.jpg" title="Wrap Yourself With Love - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/cal/feb-14-wrap-yourself-with-love-cal-1280x1024.jpg" title="Wrap Yourself With Love - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/cal/feb-14-wrap-yourself-with-love-cal-1440x900.jpg" title="Wrap Yourself With Love - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/cal/feb-14-wrap-yourself-with-love-cal-1920x1200.jpg" title="Wrap Yourself With Love - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/cal/feb-14-wrap-yourself-with-love-cal-2560x1440.jpg" title="Wrap Yourself With Love - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/nocal/feb-14-wrap-yourself-with-love-nocal-640x960.jpg" title="Wrap Yourself With Love - 640x960" rel="nofollow external" class="bo">640×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/nocal/feb-14-wrap-yourself-with-love-nocal-1024x768.jpg" title="Wrap Yourself With Love - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/nocal/feb-14-wrap-yourself-with-love-nocal-1280x800.jpg" title="Wrap Yourself With Love - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/nocal/feb-14-wrap-yourself-with-love-nocal-1280x1024.jpg" title="Wrap Yourself With Love - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/nocal/feb-14-wrap-yourself-with-love-nocal-1440x900.jpg" title="Wrap Yourself With Love - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/nocal/feb-14-wrap-yourself-with-love-nocal-1920x1200.jpg" title="Wrap Yourself With Love - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wrap-yourself-with-love/nocal/feb-14-wrap-yourself-with-love-nocal-2560x1440.jpg" title="Wrap Yourself With Love - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Let Love Overcome</h3>
    <p>“February is Black History Month and in honor &amp; celebration of the life of  Martin Luther King, Jr. we were inspired to create this wallpaper.” — Designed by <a href="http://www.hireawiz.com/" rel="nofollow external" class="bo">HIREAWIZ</a> from Phoenix, Arizona.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/feb-14-let-love-overcome-full.jpg" title="Let Love Overcome " rel="nofollow external" class="bo"><img width="500" height="281" alt="Let Love Overcome " src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-let-love-overcome-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-let-love-overcome-preview.jpg" title="Let Love Overcome  - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-320x480.jpg" title="Let Love Overcome  - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-640x480.jpg" title="Let Love Overcome  - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-800x480.jpg" title="Let Love Overcome  - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-800x600.jpg" title="Let Love Overcome  - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1024x768.jpg" title="Let Love Overcome  - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1024x1024.jpg" title="Let Love Overcome  - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1152x864.jpg" title="Let Love Overcome  - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1280x720.jpg" title="Let Love Overcome  - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1280x800.jpg" title="Let Love Overcome  - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1280x960.jpg" title="Let Love Overcome  - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1280x1024.jpg" title="Let Love Overcome  - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1400x1050.jpg" title="Let Love Overcome  - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1440x900.jpg" title="Let Love Overcome  - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1600x1200.jpg" title="Let Love Overcome  - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1680x1050.jpg" title="Let Love Overcome  - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1680x1200.jpg" title="Let Love Overcome  - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1920x1080.jpg" title="Let Love Overcome  - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1920x1200.jpg" title="Let Love Overcome  - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-1920x1440.jpg" title="Let Love Overcome  - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/cal/feb-14-let-love-overcome-cal-2560x1440.jpg" title="Let Love Overcome  - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-320x480.jpg" title="Let Love Overcome  - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-640x480.jpg" title="Let Love Overcome  - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-800x480.jpg" title="Let Love Overcome  - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-800x600.jpg" title="Let Love Overcome  - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1024x768.jpg" title="Let Love Overcome  - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1024x1024.jpg" title="Let Love Overcome  - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1152x864.jpg" title="Let Love Overcome  - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1280x720.jpg" title="Let Love Overcome  - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1280x800.jpg" title="Let Love Overcome  - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1280x960.jpg" title="Let Love Overcome  - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1280x1024.jpg" title="Let Love Overcome  - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1400x1050.jpg" title="Let Love Overcome  - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1440x900.jpg" title="Let Love Overcome  - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1600x1200.jpg" title="Let Love Overcome  - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1680x1050.jpg" title="Let Love Overcome  - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1680x1200.jpg" title="Let Love Overcome  - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1920x1080.jpg" title="Let Love Overcome  - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1920x1200.jpg" title="Let Love Overcome  - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-1920x1440.jpg" title="Let Love Overcome  - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/let-love-overcome/nocal/feb-14-let-love-overcome-nocal-2560x1440.jpg" title="Let Love Overcome  - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Month Of Love</h3>
    <p>“Happy Valentine’s Day!” — Designed by <a href="http://www.corporate3design.com" rel="nofollow external" class="bo">Matt Noa</a> from United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/feb-14-month-of-love-full.jpg" title="Month of Love" rel="nofollow external" class="bo"><img width="500" height="281" alt="Month of Love" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-month-of-love-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-month-of-love-preview.jpg" title="Month of Love - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/cal/feb-14-month-of-love-cal-1024x768.jpg" title="Month of Love - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/cal/feb-14-month-of-love-cal-1280x800.jpg" title="Month of Love - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/cal/feb-14-month-of-love-cal-1280x1024.jpg" title="Month of Love - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/cal/feb-14-month-of-love-cal-1440x900.jpg" title="Month of Love - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/cal/feb-14-month-of-love-cal-1920x1080.jpg" title="Month of Love - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/cal/feb-14-month-of-love-cal-1920x1200.jpg" title="Month of Love - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/cal/feb-14-month-of-love-cal-2560x1440.jpg" title="Month of Love - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/cal/feb-14-month-of-love-cal-2880x1800.jpg" title="Month of Love - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/cal/feb-14-month-of-love-cal-640x960.jpg" title="Month of Love - 640x960" rel="nofollow external" class="bo">640×960</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/nocal/feb-14-month-of-love-nocal-1024x768.jpg" title="Month of Love - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/nocal/feb-14-month-of-love-nocal-1280x800.jpg" title="Month of Love - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/nocal/feb-14-month-of-love-nocal-1280x1024.jpg" title="Month of Love - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/nocal/feb-14-month-of-love-nocal-1440x900.jpg" title="Month of Love - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/nocal/feb-14-month-of-love-nocal-1920x1080.jpg" title="Month of Love - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/nocal/feb-14-month-of-love-nocal-1920x1200.jpg" title="Month of Love - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/nocal/feb-14-month-of-love-nocal-2560x1440.jpg" title="Month of Love - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/nocal/feb-14-month-of-love-nocal-2880x1800.jpg" title="Month of Love - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/month-of-love/nocal/feb-14-month-of-love-nocal-640x960.jpg" title="Month of Love - 640x960" rel="nofollow external" class="bo">640×960</a>    </li>
    </ul>
    <h3>Wooden Horse</h3>
    <p>“Just want to greet our Chinese friends, Kong Hei Fat Choi! Welcome Year of the Wooden Horse.” — Designed by <a href="https://www.behance.net/sketchpat" rel="nofollow external" class="bo">Pat Buenaobra</a> from Philippines.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/wooden-horse/feb-14-wooden-horse-full.jpg" title="Wooden Horse" rel="nofollow external" class="bo"><img width="500" height="281" alt="Wooden Horse" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-wooden-horse-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-wooden-horse-preview.jpg" title="Wooden Horse - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/wooden-horse/cal/feb-14-wooden-horse-cal-1280x720.jpg" title="Wooden Horse - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wooden-horse/cal/feb-14-wooden-horse-cal-1440x900.jpg" title="Wooden Horse - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wooden-horse/cal/feb-14-wooden-horse-cal-1680x1050.jpg" title="Wooden Horse - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wooden-horse/cal/feb-14-wooden-horse-cal-1920x1080.jpg" title="Wooden Horse - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wooden-horse/cal/feb-14-wooden-horse-cal-2560x1440.jpg" title="Wooden Horse - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/wooden-horse/nocal/feb-14-wooden-horse-nocal-1280x720.jpg" title="Wooden Horse - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wooden-horse/nocal/feb-14-wooden-horse-nocal-1440x900.jpg" title="Wooden Horse - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wooden-horse/nocal/feb-14-wooden-horse-nocal-1680x1050.jpg" title="Wooden Horse - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wooden-horse/nocal/feb-14-wooden-horse-nocal-1920x1080.jpg" title="Wooden Horse - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/wooden-horse/nocal/feb-14-wooden-horse-nocal-2560x1440.jpg" title="Wooden Horse - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Chinese New Year of the Horse</h3>
    <p>“Chinese New Year is the most celebrated festival for Chinese all over the world. It falls on 31st Jan this year and we continue to celebrate it for 15 days. My design is based on the traditional Chinese character of the Horse in a shape of a galloping horse with my Evacomics characters riding on it. Red was chosen as the background colour to symbolise prosperity and good luck based on Chinese customs. Wishing everyone a great Horse year!” — Designed by <a href="http://www.eva.sg" rel="nofollow external" class="bo">Evacomics</a> from Singapore.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/feb-14-chinese-new-year-of-the-horse-full.jpg" title="Chinese New Year of the Horse" rel="nofollow external" class="bo"><img width="500" height="281" alt="Chinese New Year of the Horse" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-chinese-new-year-of-the-horse-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-chinese-new-year-of-the-horse-preview.jpg" title="Chinese New Year of the Horse - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/cal/feb-14-chinese-new-year-of-the-horse-cal-320x480.jpg" title="Chinese New Year of the Horse - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/cal/feb-14-chinese-new-year-of-the-horse-cal-1024x768.jpg" title="Chinese New Year of the Horse - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/cal/feb-14-chinese-new-year-of-the-horse-cal-1280x800.jpg" title="Chinese New Year of the Horse - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/cal/feb-14-chinese-new-year-of-the-horse-cal-1280x1024.jpg" title="Chinese New Year of the Horse - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/cal/feb-14-chinese-new-year-of-the-horse-cal-1440x900.jpg" title="Chinese New Year of the Horse - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/cal/feb-14-chinese-new-year-of-the-horse-cal-1920x1080.jpg" title="Chinese New Year of the Horse - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/cal/feb-14-chinese-new-year-of-the-horse-cal-2560x1440.jpg" title="Chinese New Year of the Horse - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/cal/feb-14-chinese-new-year-of-the-horse-cal-768x1024.jpg" title="Chinese New Year of the Horse - 768x1024" rel="nofollow external" class="bo">768×1024</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/nocal/feb-14-chinese-new-year-of-the-horse-nocal-320x480.jpg" title="Chinese New Year of the Horse - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/nocal/feb-14-chinese-new-year-of-the-horse-nocal-1024x768.jpg" title="Chinese New Year of the Horse - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/nocal/feb-14-chinese-new-year-of-the-horse-nocal-1280x800.jpg" title="Chinese New Year of the Horse - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/nocal/feb-14-chinese-new-year-of-the-horse-nocal-1280x1024.jpg" title="Chinese New Year of the Horse - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/nocal/feb-14-chinese-new-year-of-the-horse-nocal-1440x900.jpg" title="Chinese New Year of the Horse - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/nocal/feb-14-chinese-new-year-of-the-horse-nocal-1920x1080.jpg" title="Chinese New Year of the Horse - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/nocal/feb-14-chinese-new-year-of-the-horse-nocal-2560x1440.jpg" title="Chinese New Year of the Horse - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/chinese-new-year-of-the-horse/nocal/feb-14-chinese-new-year-of-the-horse-nocal-768x1024.jpg" title="Chinese New Year of the Horse - 768x1024" rel="nofollow external" class="bo">768×1024</a>    </li>
    </ul>
    <h3>The Collection Of Birds</h3>
    <p>“The collection of birds are my travels. At each destination I buy a wood, bronze, stone bird, anything the local bazaars sell. I have all gathered at a modest vitrine in my house. I have so much loved my collection, that, after taking pictures of them I then designed each one, then created a wallpaper and overdressed a wall of my living room. Now my thought is making them as a desktop wallpaper and give them to you as a gift.” — Designed by <a href="http://www.graphium.gr" rel="nofollow external" class="bo">Natasha Kamou</a> from Hellas.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/feb-14-the-collection-of-birds-full.jpg" title="The Collection of Birds" rel="nofollow external" class="bo"><img width="500" height="281" alt="The Collection of Birds" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-the-collection-of-birds-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-the-collection-of-birds-preview.jpg" title="The Collection of Birds - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-320x480.jpg" title="The Collection of Birds - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-640x480.jpg" title="The Collection of Birds - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-800x480.jpg" title="The Collection of Birds - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-800x600.jpg" title="The Collection of Birds - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1024x768.jpg" title="The Collection of Birds - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1024x1024.jpg" title="The Collection of Birds - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1152x864.jpg" title="The Collection of Birds - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1280x720.jpg" title="The Collection of Birds - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1280x800.jpg" title="The Collection of Birds - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1280x960.jpg" title="The Collection of Birds - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1280x1024.jpg" title="The Collection of Birds - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1400x1050.jpg" title="The Collection of Birds - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1440x900.jpg" title="The Collection of Birds - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1600x1200.jpg" title="The Collection of Birds - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1680x1050.jpg" title="The Collection of Birds - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1680x1200.jpg" title="The Collection of Birds - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1920x1080.jpg" title="The Collection of Birds - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1920x1200.jpg" title="The Collection of Birds - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-1920x1440.jpg" title="The Collection of Birds - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-2560x1440.jpg" title="The Collection of Birds - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-2560x1600.jpg" title="The Collection of Birds - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/cal/feb-14-the-collection-of-birds-cal-2880x1800.jpg" title="The Collection of Birds - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-320x480.jpg" title="The Collection of Birds - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-640x480.jpg" title="The Collection of Birds - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-800x480.jpg" title="The Collection of Birds - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-800x600.jpg" title="The Collection of Birds - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1024x768.jpg" title="The Collection of Birds - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1024x1024.jpg" title="The Collection of Birds - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1152x864.jpg" title="The Collection of Birds - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1280x720.jpg" title="The Collection of Birds - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1280x800.jpg" title="The Collection of Birds - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1280x960.jpg" title="The Collection of Birds - 1280x960" rel="nofollow external" class="bo">1280×960</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1280x1024.jpg" title="The Collection of Birds - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1400x1050.jpg" title="The Collection of Birds - 1400x1050" rel="nofollow external" class="bo">1400×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1440x900.jpg" title="The Collection of Birds - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1600x1200.jpg" title="The Collection of Birds - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1680x1050.jpg" title="The Collection of Birds - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1680x1200.jpg" title="The Collection of Birds - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1920x1080.jpg" title="The Collection of Birds - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1920x1200.jpg" title="The Collection of Birds - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-1920x1440.jpg" title="The Collection of Birds - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-2560x1440.jpg" title="The Collection of Birds - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-2560x1600.jpg" title="The Collection of Birds - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/the-collection-of-birds/nocal/feb-14-the-collection-of-birds-nocal-2880x1800.jpg" title="The Collection of Birds - 2880x1800" rel="nofollow external" class="bo">2880×1800</a>    </li>
    </ul>
    <h3>Funny Space</h3>
    <p>Designed by <a href="http://webgarret.net/" rel="nofollow external" class="bo">BBoy Juss</a> from Uzbekistan.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/feb-14-funny-space-full.png" title="Funny Space" rel="nofollow external" class="bo"><img width="500" height="281" alt="Funny Space" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-funny-space-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-funny-space-preview.png" title="Funny Space - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/cal/feb-14-funny-space-cal-640x480.png" title="Funny Space - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/cal/feb-14-funny-space-cal-1024x768.png" title="Funny Space - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/cal/feb-14-funny-space-cal-1024x1024.png" title="Funny Space - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/cal/feb-14-funny-space-cal-1280x720.png" title="Funny Space - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/cal/feb-14-funny-space-cal-1280x800.png" title="Funny Space - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/cal/feb-14-funny-space-cal-1280x1024.png" title="Funny Space - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/cal/feb-14-funny-space-cal-1600x1200.png" title="Funny Space - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/cal/feb-14-funny-space-cal-1680x1050.png" title="Funny Space - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/cal/feb-14-funny-space-cal-1920x1080.png" title="Funny Space - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/cal/feb-14-funny-space-cal-1920x1200.png" title="Funny Space - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/cal/feb-14-funny-space-cal-2560x1440.png" title="Funny Space - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/cal/feb-14-funny-space-cal-1366x768.png" title="Funny Space - 1366x768" rel="nofollow external" class="bo">1366×768</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/nocal/feb-14-funny-space-nocal-640x480.png" title="Funny Space - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/nocal/feb-14-funny-space-nocal-1024x768.png" title="Funny Space - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/nocal/feb-14-funny-space-nocal-1024x1024.png" title="Funny Space - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/nocal/feb-14-funny-space-nocal-1280x720.png" title="Funny Space - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/nocal/feb-14-funny-space-nocal-1280x800.png" title="Funny Space - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/nocal/feb-14-funny-space-nocal-1280x1024.png" title="Funny Space - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/nocal/feb-14-funny-space-nocal-1600x1200.png" title="Funny Space - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/nocal/feb-14-funny-space-nocal-1680x1050.png" title="Funny Space - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/nocal/feb-14-funny-space-nocal-1920x1080.png" title="Funny Space - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/nocal/feb-14-funny-space-nocal-1920x1200.png" title="Funny Space - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/nocal/feb-14-funny-space-nocal-2560x1440.png" title="Funny Space - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/funny-space/nocal/feb-14-funny-space-nocal-1366x768.png" title="Funny Space - 1366x768" rel="nofollow external" class="bo">1366×768</a>    </li>
    </ul>
    <h3>Happy Valentine’s Day</h3>
    <p>Designed by <a href="http://zanetine.com" rel="nofollow external" class="bo">Zanetine Web Design</a> from India.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/feb-14-happy-valentines-day-full.jpg" title="Happy Valentine's Day" rel="nofollow external" class="bo"><img width="500" height="281" alt="Happy Valentine's Day" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-happy-valentines-day-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-happy-valentines-day-preview.jpg" title="Happy Valentine's Day - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-320x480.jpg" title="Happy Valentine's Day - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-800x800.jpg" title="Happy Valentine's Day - 800x800" rel="nofollow external" class="bo">800×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-1024x768.jpg" title="Happy Valentine's Day - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-1152x864.jpg" title="Happy Valentine's Day - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-1200x1200.jpg" title="Happy Valentine's Day - 1200x1200" rel="nofollow external" class="bo">1200×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-1366x768.jpg" title="Happy Valentine's Day - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-1440x900.jpg" title="Happy Valentine's Day - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-1680x1050.jpg" title="Happy Valentine's Day - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-1680x1200.jpg" title="Happy Valentine's Day - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-1920x1080.jpg" title="Happy Valentine's Day - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-1920x1200.jpg" title="Happy Valentine's Day - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-2560x1440.jpg" title="Happy Valentine's Day - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/cal/feb-14-happy-valentines-day-cal-2880x1080.jpg" title="Happy Valentine's Day - 2880x1080" rel="nofollow external" class="bo">2880×1080</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-320x480.jpg" title="Happy Valentine's Day - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-800x800.jpg" title="Happy Valentine's Day - 800x800" rel="nofollow external" class="bo">800×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-1024x768.jpg" title="Happy Valentine's Day - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-1152x864.jpg" title="Happy Valentine's Day - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-1200x1200.jpg" title="Happy Valentine's Day - 1200x1200" rel="nofollow external" class="bo">1200×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-1366x768.jpg" title="Happy Valentine's Day - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-1440x900.jpg" title="Happy Valentine's Day - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-1680x1050.jpg" title="Happy Valentine's Day - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-1680x1200.jpg" title="Happy Valentine's Day - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-1920x1080.jpg" title="Happy Valentine's Day - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-1920x1200.jpg" title="Happy Valentine's Day - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-2560x1440.jpg" title="Happy Valentine's Day - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/happy-valentines-day/nocal/feb-14-happy-valentines-day-nocal-2880x1080.jpg" title="Happy Valentine's Day - 2880x1080" rel="nofollow external" class="bo">2880×1080</a>    </li>
    </ul>
    <h3>It Smells Like Love Sauce</h3>
    <p>“Love.” — Designed by <a href="http://www.fuzzproductions.com" rel="nofollow external" class="bo">Reed Tereski at Fuzz</a> from United States.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/feb-14-it-smells-like-love-sauce-full.png" title="It smells like love sauce." rel="nofollow external" class="bo"><img width="500" height="281" alt="It smells like love sauce." src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-it-smells-like-love-sauce-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-it-smells-like-love-sauce-preview.png" title="It smells like love sauce. - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/cal/feb-14-it-smells-like-love-sauce-cal-1024x768.png" title="It smells like love sauce. - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/cal/feb-14-it-smells-like-love-sauce-cal-1280x720.png" title="It smells like love sauce. - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/cal/feb-14-it-smells-like-love-sauce-cal-1280x800.png" title="It smells like love sauce. - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/cal/feb-14-it-smells-like-love-sauce-cal-1440x900.png" title="It smells like love sauce. - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/cal/feb-14-it-smells-like-love-sauce-cal-1680x1050.png" title="It smells like love sauce. - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/cal/feb-14-it-smells-like-love-sauce-cal-1920x1080.png" title="It smells like love sauce. - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/cal/feb-14-it-smells-like-love-sauce-cal-2650x1440.png" title="It smells like love sauce. - 2650x1440" rel="nofollow external" class="bo">2650×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/cal/feb-14-it-smells-like-love-sauce-cal-2048x1536.png" title="It smells like love sauce. - 2048x1536" rel="nofollow external" class="bo">2048×1536</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/nocal/feb-14-it-smells-like-love-sauce-nocal-1024x768.png" title="It smells like love sauce. - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/nocal/feb-14-it-smells-like-love-sauce-nocal-1280x720.png" title="It smells like love sauce. - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/nocal/feb-14-it-smells-like-love-sauce-nocal-1280x800.png" title="It smells like love sauce. - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/nocal/feb-14-it-smells-like-love-sauce-nocal-1440x900.png" title="It smells like love sauce. - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/nocal/feb-14-it-smells-like-love-sauce-nocal-1680x1050.png" title="It smells like love sauce. - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/nocal/feb-14-it-smells-like-love-sauce-nocal-1920x1080.png" title="It smells like love sauce. - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/nocal/feb-14-it-smells-like-love-sauce-nocal-2650x1440.png" title="It smells like love sauce. - 2650x1440" rel="nofollow external" class="bo">2650×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/it-smells-like-love-sauce/nocal/feb-14-it-smells-like-love-sauce-nocal-2048x1536.png" title="It smells like love sauce. - 2048x1536" rel="nofollow external" class="bo">2048×1536</a>    </li>
    </ul>
    <h3>Love Is All You Need</h3>
    <p>“February is the month of love so we designed a lovely wallpaper to remind everyone that love is the most important thing in life.” — 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/february-14/love-is-in-the-air/feb-14-love-is-in-the-air-full.jpg" title="Love is in the air" rel="nofollow external" class="bo"><img width="500" height="281" alt="Love is in the air" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-love-is-in-the-air-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-love-is-in-the-air-preview.jpg" title="Love is in the air - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/cal/feb-14-love-is-in-the-air-cal-1024x1024.jpg" title="Love is in the air - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/cal/feb-14-love-is-in-the-air-cal-1280x800.jpg" title="Love is in the air - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/cal/feb-14-love-is-in-the-air-cal-1280x1024.jpg" title="Love is in the air - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/cal/feb-14-love-is-in-the-air-cal-1680x1050.jpg" title="Love is in the air - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/cal/feb-14-love-is-in-the-air-cal-1920x1080.jpg" title="Love is in the air - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/cal/feb-14-love-is-in-the-air-cal-1920x1200.jpg" title="Love is in the air - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/cal/feb-14-love-is-in-the-air-cal-2560x1440.jpg" title="Love is in the air - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/cal/feb-14-love-is-in-the-air-cal-1366x768.jpg" title="Love is in the air - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/cal/feb-14-love-is-in-the-air-cal-2560x1600.jpg" title="Love is in the air - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/cal/feb-14-love-is-in-the-air-cal-640x960.jpg" title="Love is in the air - 640x960" rel="nofollow external" class="bo">640×960</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/nocal/feb-14-love-is-in-the-air-nocal-1024x1024.jpg" title="Love is in the air - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/nocal/feb-14-love-is-in-the-air-nocal-1280x800.jpg" title="Love is in the air - 1280x800" rel="nofollow external" class="bo">1280×800</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/nocal/feb-14-love-is-in-the-air-nocal-1280x1024.jpg" title="Love is in the air - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/nocal/feb-14-love-is-in-the-air-nocal-1680x1050.jpg" title="Love is in the air - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/nocal/feb-14-love-is-in-the-air-nocal-1920x1080.jpg" title="Love is in the air - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/nocal/feb-14-love-is-in-the-air-nocal-1920x1200.jpg" title="Love is in the air - 1920x1200" rel="nofollow external" class="bo">1920×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/nocal/feb-14-love-is-in-the-air-nocal-2560x1440.jpg" title="Love is in the air - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/nocal/feb-14-love-is-in-the-air-nocal-1366x768.jpg" title="Love is in the air - 1366x768" rel="nofollow external" class="bo">1366×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/nocal/feb-14-love-is-in-the-air-nocal-2560x1600.jpg" title="Love is in the air - 2560x1600" rel="nofollow external" class="bo">2560×1600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-in-the-air/nocal/feb-14-love-is-in-the-air-nocal-640x960.jpg" title="Love is in the air - 640x960" rel="nofollow external" class="bo">640×960</a>    </li>
    </ul>
    <h3>LOVE</h3>
    <p>“February is all about love so I created a wallpaper that shows “love” as a foundation of life and celebrates nature, happiness and cheerful times with loved ones.” — Designed by <a href="https://www.behance.net/martinakomiti" rel="nofollow external" class="bo">Martina Komiti</a> from Cyprus.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/love/feb-14-love-full.png" title="LOVE" rel="nofollow external" class="bo"><img width="500" height="281" alt="LOVE" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-love-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-love-preview.png" title="LOVE - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/cal/feb-14-love-cal-320x480.png" title="LOVE - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/cal/feb-14-love-cal-640x480.png" title="LOVE - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/cal/feb-14-love-cal-800x600.png" title="LOVE - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/cal/feb-14-love-cal-1024x1024.png" title="LOVE - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/cal/feb-14-love-cal-1152x864.png" title="LOVE - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/cal/feb-14-love-cal-1280x720.png" title="LOVE - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/cal/feb-14-love-cal-1280x1024.png" title="LOVE - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/cal/feb-14-love-cal-1440x900.png" title="LOVE - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/cal/feb-14-love-cal-1600x1200.png" title="LOVE - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/cal/feb-14-love-cal-1920x1080.png" title="LOVE - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/cal/feb-14-love-cal-1920x1440.png" title="LOVE - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/cal/feb-14-love-cal-2560x1440.png" title="LOVE - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/nocal/feb-14-love-nocal-320x480.png" title="LOVE - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/nocal/feb-14-love-nocal-640x480.png" title="LOVE - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/nocal/feb-14-love-nocal-800x600.png" title="LOVE - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/nocal/feb-14-love-nocal-1024x1024.png" title="LOVE - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/nocal/feb-14-love-nocal-1152x864.png" title="LOVE - 1152x864" rel="nofollow external" class="bo">1152×864</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/nocal/feb-14-love-nocal-1280x720.png" title="LOVE - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/nocal/feb-14-love-nocal-1280x1024.png" title="LOVE - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/nocal/feb-14-love-nocal-1440x900.png" title="LOVE - 1440x900" rel="nofollow external" class="bo">1440×900</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/nocal/feb-14-love-nocal-1600x1200.png" title="LOVE - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/nocal/feb-14-love-nocal-1920x1080.png" title="LOVE - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/nocal/feb-14-love-nocal-1920x1440.png" title="LOVE - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love/nocal/feb-14-love-nocal-2560x1440.png" title="LOVE - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Sharp Wallpaper</h3>
    <p>“I was sick recently and squinting through my blinds made a neat effect with shapes and colors.” — Designed by <a href="http://www.corporate3design.com" rel="nofollow external" class="bo">Dylan Baumann</a> from Omaha, NE.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/feb-14-sharp-full.png" title="Sharp" rel="nofollow external" class="bo"><img width="500" height="281" alt="Sharp" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-sharp-preview.png" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-sharp-preview.png" title="Sharp - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/cal/feb-14-sharp-cal-320x480.png" title="Sharp - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/cal/feb-14-sharp-cal-640x480.png" title="Sharp - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/cal/feb-14-sharp-cal-800x600.png" title="Sharp - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/cal/feb-14-sharp-cal-1024x1024.png" title="Sharp - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/cal/feb-14-sharp-cal-1280x1024.png" title="Sharp - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/cal/feb-14-sharp-cal-1600x1200.png" title="Sharp - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/cal/feb-14-sharp-cal-1680x1200.png" title="Sharp - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/cal/feb-14-sharp-cal-1920x1080.png" title="Sharp - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/cal/feb-14-sharp-cal-1920x1440.png" title="Sharp - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/cal/feb-14-sharp-cal-2560x1440.png" title="Sharp - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/nocal/feb-14-sharp-nocal-320x480.png" title="Sharp - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/nocal/feb-14-sharp-nocal-640x480.png" title="Sharp - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/nocal/feb-14-sharp-nocal-800x600.png" title="Sharp - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/nocal/feb-14-sharp-nocal-1024x1024.png" title="Sharp - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/nocal/feb-14-sharp-nocal-1280x1024.png" title="Sharp - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/nocal/feb-14-sharp-nocal-1600x1200.png" title="Sharp - 1600x1200" rel="nofollow external" class="bo">1600×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/nocal/feb-14-sharp-nocal-1680x1200.png" title="Sharp - 1680x1200" rel="nofollow external" class="bo">1680×1200</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/nocal/feb-14-sharp-nocal-1920x1080.png" title="Sharp - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/nocal/feb-14-sharp-nocal-1920x1440.png" title="Sharp - 1920x1440" rel="nofollow external" class="bo">1920×1440</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sharp/nocal/feb-14-sharp-nocal-2560x1440.png" title="Sharp - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Sweetness</h3>
    <p>“February is the month of love. It is also a great month for those who love to get crafty making Valentine cards, or making something cute with all the leftover candy hearts. Add a little sweetness to your desktop this month and share the love!” — Designed by <a href="http://aksher.com" rel="nofollow external" class="bo">Anna</a> from USA.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/feb-14-sweetness-full.jpg" title="Sweetness" rel="nofollow external" class="bo"><img width="500" height="281" alt="Sweetness" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-sweetness-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-sweetness-preview.jpg" title="Sweetness - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/cal/feb-14-sweetness-cal-320x480.jpg" title="Sweetness - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/cal/feb-14-sweetness-cal-800x600.jpg" title="Sweetness - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/cal/feb-14-sweetness-cal-1024x1024.jpg" title="Sweetness - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/cal/feb-14-sweetness-cal-1280x1024.jpg" title="Sweetness - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/cal/feb-14-sweetness-cal-1680x1050.jpg" title="Sweetness - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/cal/feb-14-sweetness-cal-1920x1220.jpg" title="Sweetness - 1920x1220" rel="nofollow external" class="bo">1920×1220</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/cal/feb-14-sweetness-cal-2560x1440.jpg" title="Sweetness - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/nocal/feb-14-sweetness-nocal-320x480.jpg" title="Sweetness - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/nocal/feb-14-sweetness-nocal-800x600.jpg" title="Sweetness - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/nocal/feb-14-sweetness-nocal-1024x1024.jpg" title="Sweetness - 1024x1024" rel="nofollow external" class="bo">1024×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/nocal/feb-14-sweetness-nocal-1280x1024.jpg" title="Sweetness - 1280x1024" rel="nofollow external" class="bo">1280×1024</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/nocal/feb-14-sweetness-nocal-1680x1050.jpg" title="Sweetness - 1680x1050" rel="nofollow external" class="bo">1680×1050</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/nocal/feb-14-sweetness-nocal-1920x1220.jpg" title="Sweetness - 1920x1220" rel="nofollow external" class="bo">1920×1220</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/sweetness/nocal/feb-14-sweetness-nocal-2560x1440.jpg" title="Sweetness - 2560x1440" rel="nofollow external" class="bo">2560×1440</a>    </li>
    </ul>
    <h3>Let The Love Out</h3>
    <p>“February, let the love out to the air!” — Designed by <a href="http://nevereversober.com/" rel="nofollow external" class="bo">Elie Cheong</a> from Malaysia.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/feb-14-love-is-the-air-full.jpg" title="Love is the air " rel="nofollow external" class="bo"><img width="500" height="281" alt="Love is the air " src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-love-is-the-air-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-love-is-the-air-preview.jpg" title="Love is the air  - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/cal/feb-14-love-is-the-air-cal-320x480.jpg" title="Love is the air  - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/cal/feb-14-love-is-the-air-cal-800x480.jpg" title="Love is the air  - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/cal/feb-14-love-is-the-air-cal-800x600.jpg" title="Love is the air  - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/cal/feb-14-love-is-the-air-cal-1024x768.jpg" title="Love is the air  - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/cal/feb-14-love-is-the-air-cal-1280x720.jpg" title="Love is the air  - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/cal/feb-14-love-is-the-air-cal-1920x1080.jpg" title="Love is the air  - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/nocal/feb-14-love-is-the-air-nocal-320x480.jpg" title="Love is the air  - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/nocal/feb-14-love-is-the-air-nocal-800x480.jpg" title="Love is the air  - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/nocal/feb-14-love-is-the-air-nocal-800x600.jpg" title="Love is the air  - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/nocal/feb-14-love-is-the-air-nocal-1024x768.jpg" title="Love is the air  - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/nocal/feb-14-love-is-the-air-nocal-1280x720.jpg" title="Love is the air  - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/love-is-the-air/nocal/feb-14-love-is-the-air-nocal-1920x1080.jpg" title="Love is the air  - 1920x1080" rel="nofollow external" class="bo">1920×1080</a>    </li>
    </ul>
    <h3>Be Mine</h3>
    <p>“With Valentine’s Day being in February, I decided to use that as my theme. What I created was a very stereotypical rendition of the day with pink, red and hearts. All tied together with the words “Be mine”.” — Designed by <a href="http://fan-freakin-tastic.com/" rel="nofollow external" class="bo">Tina Eriksson</a> from Sweden.</p>
    <p><a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/feb-14-be-mine-full.jpg" title="Be mine" rel="nofollow external" class="bo"><img width="500" height="281" alt="Be mine" src="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-be-mine-preview.jpg" style="max-width: 100%; height: auto;"></a></p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/01/feb-14-be-mine-preview.jpg" title="Be mine - Preview" rel="nofollow external" class="bo">preview</a></li>
    <li>
            with calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/cal/feb-14-be-mine-cal-320x480.jpg" title="Be mine - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/cal/feb-14-be-mine-cal-640x480.jpg" title="Be mine - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/cal/feb-14-be-mine-cal-800x480.jpg" title="Be mine - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/cal/feb-14-be-mine-cal-800x600.jpg" title="Be mine - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/cal/feb-14-be-mine-cal-1024x768.jpg" title="Be mine - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/cal/feb-14-be-mine-cal-1280x720.jpg" title="Be mine - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/cal/feb-14-be-mine-cal-1280x800.jpg" title="Be mine - 1280x800" rel="nofollow external" class="bo">1280×800</a>    </li>
    <li>
            without calendar: <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/nocal/feb-14-be-mine-nocal-320x480.jpg" title="Be mine - 320x480" rel="nofollow external" class="bo">320×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/nocal/feb-14-be-mine-nocal-640x480.jpg" title="Be mine - 640x480" rel="nofollow external" class="bo">640×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/nocal/feb-14-be-mine-nocal-800x480.jpg" title="Be mine - 800x480" rel="nofollow external" class="bo">800×480</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/nocal/feb-14-be-mine-nocal-800x600.jpg" title="Be mine - 800x600" rel="nofollow external" class="bo">800×600</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/nocal/feb-14-be-mine-nocal-1024x768.jpg" title="Be mine - 1024x768" rel="nofollow external" class="bo">1024×768</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/nocal/feb-14-be-mine-nocal-1280x720.jpg" title="Be mine - 1280x720" rel="nofollow external" class="bo">1280×720</a>, <a href="http://files.smashingmagazine.com/wallpapers/february-14/be-mine/nocal/feb-14-be-mine-nocal-1280x800.jpg" title="Be mine - 1280x800" rel="nofollow external" class="bo">1280×800</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>
    <hr>
    <p><small>© The Smashing Editorial for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2014.</small></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...</Summary>
<Website>http://www.smashingmagazine.com/2014/01/31/desktop-wallpaper-calendars-february-2014/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40851/guest@my.umbc.edu/7b4604548de8b0ab458b06a6ce972463/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>Fri, 31 Jan 2014 09:05:58 -0500</PostedAt>
<EditAt>Fri, 31 Jan 2014 09:05:58 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="40850" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40850">
<Title>Type inspired glasses for font nerds</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="ttt" src="http://netdna.webdesignerdepot.com/uploads/2014/01/ttt2.jpg" width="200" height="160" style="max-width: 100%; height: auto;">Stereotypes are frequently wrong, but every legend has, as they say, a grain of truth to it. It seems that the image of the bespectacled typographer hunched over his intricate work may not be so far from the truth.</p> <p>Merging the world of fashionista and font nerd, the Japanese company <a href="http://type.gs/" rel="nofollow external" class="bo"><em>Type</em></a> has created typeface-inspired eyewear. More than just a fashion statement, these swanky accessories embody the type they’re named after — Helvetica and Garamond. Not surprisingly, each set of specs comes in <em>light,</em> <em>regular</em> and <em>bold</em> versions, indicating the frame thickness.</p> <p>Sure, you have to be pretty passionate about fonts to see the ultimate beauty and nuance of each pair — but when you do, the result is quite remarkable. For example, the tips of the glasses mimic the Helvetica stem and the curves of the Garamond pair are the spitting image of the typeface’s lowercase letters.</p> <p><a href="http://type.gs/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/01/compare.jpg" width="650" alt="Type inspired glasses for font nerds" style="max-width: 100%; height: auto;"></a></p> <p>So the next time you’re in the market for a new set of eyewear, embrace your love of design — and wear it proudly on your face.</p> <p><a href="http://type.gs/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/01/h_light.jpg" width="650" alt="Type inspired glasses for font nerds" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://type.gs/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/01/h_reg.jpg" width="650" alt="Type inspired glasses for font nerds" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://type.gs/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/01/h_bold.jpg" width="650" alt="Type inspired glasses for font nerds" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://type.gs/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/01/g_light.jpg" width="650" alt="Type inspired glasses for font nerds" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://type.gs/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/01/g_reg.jpg" width="650" alt="Type inspired glasses for font nerds" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://type.gs/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/01/g_bold.jpg" width="650" alt="Type inspired glasses for font nerds" style="max-width: 100%; height: auto;"></a></p> <p> </p> <p><em><strong>Would you wear Helvetica or Garamond? What other fonts would make good specs? Let us know in the comments.</strong></em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/iconnice-big-bundle-25.html?ref=inwidget" rel="nofollow external" class="bo"><strong>IconNice Big Bundle of 25 iOS App Web Templates &amp; more – only $19!</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="Type inspired glasses for font nerds" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2014/01/type-inspired-glasses-for-font-nerds/" rel="nofollow external" class="bo">Source</a> <br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2014%2F01%2Ftype-inspired-glasses-for-font-nerds%2F&amp;t=Type+inspired+glasses+for+font+nerds" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2014%2F01%2Ftype-inspired-glasses-for-font-nerds%2F&amp;t=Type+inspired+glasses+for+font+nerds" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2014%2F01%2Ftype-inspired-glasses-for-font-nerds%2F&amp;t=Type+inspired+glasses+for+font+nerds" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2014%2F01%2Ftype-inspired-glasses-for-font-nerds%2F&amp;t=Type+inspired+glasses+for+font+nerds" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2014%2F01%2Ftype-inspired-glasses-for-font-nerds%2F&amp;t=Type+inspired+glasses+for+font+nerds" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/187557239772/u/49/f/661066/c/35285/s/36922cdf/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187557239772/u/49/f/661066/c/35285/s/36922cdf/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/187557239772/u/49/f/661066/c/35285/s/36922cdf/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187557239772/u/49/f/661066/c/35285/s/36922cdf/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/187557239772/u/49/f/661066/c/35285/s/36922cdf/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187557239772/u/49/f/661066/c/35285/s/36922cdf/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/187557239772/u/49/f/661066/c/35285/s/36922cdf/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187557239772/u/49/f/661066/c/35285/s/36922cdf/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Stereotypes are frequently wrong, but every legend has, as they say, a grain of truth to it. It seems that the image of the bespectacled typographer hunched over his intricate work may not be so...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/36922cdf/sc/4/l/0L0Swebdesignerdepot0N0C20A140C0A10Ctype0Einspired0Eglasses0Efor0Efont0Enerds0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40850/guest@my.umbc.edu/c256bbd878341928cf930a2e039a4a81/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>designer-eyewear</Tag>
<Tag>development</Tag>
<Tag>eyewear</Tag>
<Tag>font-glasses</Tag>
<Tag>fun-eyewear</Tag>
<Tag>funny</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>sql</Tag>
<Tag>type</Tag>
<Tag>type-glasses</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>Fri, 31 Jan 2014 08:15:50 -0500</PostedAt>
<EditAt>Fri, 31 Jan 2014 08:15:50 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="40849" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40849">
<Title>Bits Blog: All Quiet on the Amazon Front</Title>
<Body>
<![CDATA[
    <div class="html-content">Amazon is one of the most highly valued, most innovative and just plain most interesting companies in the country. It is also one that places a premium on saying nothing.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F31%2Fall-quiet-on-the-amazon-front%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+All+Quiet+on+the+Amazon+Front" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F31%2Fall-quiet-on-the-amazon-front%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+All+Quiet+on+the+Amazon+Front" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F31%2Fall-quiet-on-the-amazon-front%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+All+Quiet+on+the+Amazon+Front" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F31%2Fall-quiet-on-the-amazon-front%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+All+Quiet+on+the+Amazon+Front" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F31%2Fall-quiet-on-the-amazon-front%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+All+Quiet+on+the+Amazon+Front" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/186530051286/u/0/f/640387/c/34625/s/3691fd07/sc/5/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530051286/u/0/f/640387/c/34625/s/3691fd07/sc/5/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186530051286/u/0/f/640387/c/34625/s/3691fd07/sc/5/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530051286/u/0/f/640387/c/34625/s/3691fd07/sc/5/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186530051286/u/0/f/640387/c/34625/s/3691fd07/sc/5/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530051286/u/0/f/640387/c/34625/s/3691fd07/sc/5/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186530051286/u/0/f/640387/c/34625/s/3691fd07/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530051286/u/0/f/640387/c/34625/s/3691fd07/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Amazon is one of the most highly valued, most innovative and just plain most interesting companies in the country. It is also one that places a premium on saying nothing.      </Summary>
<Website>http://bits.blogs.nytimes.com/2014/01/31/all-quiet-on-the-amazon-front/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40849/guest@my.umbc.edu/c4b9c2cfced69f35e6f966cea2a4b026/api/pixel</TrackingUrl>
<Tag>amazon-com-inc</Tag>
<Tag>amazon-com-inc-amzn-nasdaq</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>e-commerce</Tag>
<Tag>new</Tag>
<Tag>retailing</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>Fri, 31 Jan 2014 07:52:18 -0500</PostedAt>
<EditAt>Fri, 31 Jan 2014 11:30:01 -0500</EditAt>
</NewsItem>

</News>
