<?xml version="1.0"?>
<News hasArchived="true" page="8775" pageCount="10715" pageSize="10" timestamp="Mon, 06 Jul 2026 11:20:40 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8775">
<NewsItem contentIssues="false" id="28577" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28577">
<Title>The countdown to finals continues:  14 days and counting...</Title>
<Tagline>Smart Students at UMBC Use Study Groups - join one today!!!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">Hello All!  <div><br></div>
    <div>
    <strong>14</strong> days until the start of final exams!</div>
    <div><br></div>
    <div>Fact:  Study groups are a great strategy to prepare for exams.</div>
    <div><br></div>
    <div>The good news:  It's never too late to join one...</div>
    <div><br></div>
    <div><br></div>
    <div>I can help you get started!!  Contact me for assistance or more information.</div>
    <div><br></div>
    <div>Dr. Felix</div>
    <div>iCubed Study Group Coordinator</div>
    <div><a href="mailto:tfelix1@umbc.edu">tfelix1@umbc.edu</a></div>
    <div>410.455.3173</div>
    </div>
]]>
</Body>
<Summary>Hello All!      14 days until the start of final exams!     Fact:  Study groups are a great strategy to prepare for exams.     The good news:  It's never too late to join one...        I can help...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28577/guest@my.umbc.edu/363893a0a2149ca2725f67b63f5ce658/api/pixel</TrackingUrl>
<Group token="retired-304">iCubed: Study Groups</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-304</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/images/avatars/group/5/xsmall.png?1782921973</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/images/avatars/group/5/original.png?1782921973</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/5/xxlarge.png?1782921973</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/5/xlarge.png?1782921973</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/images/avatars/group/5/large.png?1782921973</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/images/avatars/group/5/medium.png?1782921973</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/5/small.png?1782921973</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/images/avatars/group/5/xsmall.png?1782921973</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/images/avatars/group/5/xxsmall.png?1782921973</AvatarUrl>
<Sponsor>iCubed Study Groups</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 02 May 2013 08:50:22 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="28575" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28575">
<Title>Open Source Plugin: Magnific Popup, A Truly Responsive Lightbox (For jQuery And Zepto.js)</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>A lightbox is one of those tools that work great on the desktop but often fail on small mobile devices. These days, finding a plugin that is responsive and that displays content right away is hard. For this reason, I created <a href="http://dimsemenov.com/plugins/magnific-popup/" rel="nofollow external" class="bo">Magnific Popup</a>, an open-source lightbox plugin focused on performance.</p>
    <p>In this article, <strong>I’ll share the techniques</strong> I employed in creating this plugin, techniques that can make your lightbox much faster and easier to use, whatever the device being used.</p>
    <h3>1. Speed</h3>
    <p>We might not be able to speed up the loading time of an image with this lightbox plugin, but we can create the perception of a faster loading time.</p>
    <h4>Progressive Loading of Images</h4>
    <p>The majority of lightbox plugins will fully preload an image before displaying it. This is done to figure out the original size of the image and to center it with JavaScript. Because Magnific Popup centers the content with CSS, we can avoid preloading and instead display the image right away to take advantage of progressive image loading. It will render and show the image while the data is being received.</p>
    <p>You can speed this up even more by <a href="http://www.codinghorror.com/blog/2005/12/progressive-image-rendering.html" rel="nofollow external" class="bo">progressively rendering the JPEG</a>. It is rendered not from top to bottom, but from low quality to full quality, so the user can discern the image even faster. The type of rendering to use is strictly a matter of preference.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/03/progressive-loading.jpg" rel="nofollow external" class="bo"><img alt="Progressive image loading" src="http://media.smashingmagazine.com/wp-content/uploads/2013/03/progressive-loading.jpg" width="500" height="452" style="max-width: 100%; height: auto;"></a></p>
    <h4>CSS-Based Resizing</h4>
    <p>The CSS-only approach <strong>makes this lightbox extremely flexible.</strong> You can specify sizes in relative units such as ems, resize popups in media queries, and update popup content dynamically without having to worry about how it will be resized and centered. Try to avoid, or at least reduce, the number of resizing properties in a window’s <code>resize</code> event, because it will look much slower than resizing with just pure CSS.</p>
    <p>Vertically centering an element with unknown dimensions is probably the most horrifying topic in CSS layout. The main goal for me was to prevent the size of the content area from dynamically updating the contents of the lightbox, and to make it work in IE 8 and above.</p>
    <p>Following the principle of progressive enhancement, I decided to <strong>drop the vertical centering feature in IE 7</strong> completely, because the only way to implement it was to use slow CSS expressions, which kill performance in old browsers. In contrast to modern browsers, the resolution of monitors on which IE 7 is being run is unusually easy to predict. We’d know that the user would be on an old PC, which typically has a resolution of somewhere between 800 × 600 and 1280 × 1024 pixels; so, we can just set a fixed margin from the top: <code>.lightbox-image { margin-top: 10%; }</code>. Alternatively, instead of opening the lightbox, you can just link directly to the content. In Magnific Popup, you can do this like so:</p>
    <pre><code>&#x000A;    $('.popup-link').magnificPopup(function() {&#x000A;      disableOn: function() {&#x000A;        // Detect IE 7 or lower with your preferred method&#x000A;        // and return false if you want to trigger the default action&#x000A;        return isIE7 ? false: true;&#x000A;      }&#x000A;    });&#x000A;    </code></pre>
    <p><strong>Centering an HTML block</strong></p>
    <p>Here are the criteria:</p>
    <ol>
    <li>The size of the block is unknown and could be changed at any time.</li>
    <li>Block should be centered both horizontally and vertically.</li>
    <li>If the height of the popup is bigger than the viewport, then the scrollbar should appear, and the popup should automatically align to the top.</li>
    </ol>
    <p>The one reliable technique to vertically center an element of unknown height that I’ve found uses a helper inline-block element with a setting of <code>vertical-align: middle</code> and <code>height: 100%</code>. Chris Coyier has written a <a href="http://css-tricks.com/centering-in-the-unknown/" rel="nofollow external" class="bo">superb article</a> covering this technique. It <a href="http://codepen.io/dimsemenov/pen/AkdJC" rel="nofollow external" class="bo">works perfectly</a> and meets all three requirements.</p>
    <p><strong>Centering an image with a caption</strong></p>
    <p>In addition to the requirements of an HTML block, the image should also meet these requirements:</p>
    <ul>
    <li>It should fit the area both horizontally and vertically.</li>
    <li>Its maximum height should equal the height of the original image.</li>
    <li>The caption should be positioned directly below the image, and the text may flow up to two lines.</li>
    </ul>
    <p>Here is the structure of the image’s lightbox:</p>
    <pre><code>&lt;div class="container"&gt;&#x000A;      &lt;img src="image.jpg"/&gt;&#x000A;      &lt;div class="description"&gt;Caption&lt;/div&gt;&#x000A;    &lt;/div&gt;&#x000A;    </code></pre>
    <p>Implementing this just for an image and with support for IE 8 and above is <a href="http://codepen.io/dimsemenov/pen/jhsJL" rel="nofollow external" class="bo">not hard</a>. The problem comes when you try to position elements near to the image (such as a caption or related icon).</p>
    <p>I was not able to find the solution for such a layout without using JavaScript, so I used a technique that applies a <code>max-height</code> to the image. <a href="http://codepen.io/dimsemenov/pen/pDHhg" rel="nofollow external" class="bo">Check the example on CodePen</a> to see how it works.</p>
    <p><strong>Centering an iframe</strong></p>
    <p>Iframes in Magnific Popup are resized using the popular and effective technique introduced by Thierry Koblentz in his article “<a href="http://alistapart.com/article/creating-intrinsic-ratios-for-video" rel="nofollow external" class="bo">Creating Intrinsic Ratios for Video</a>” on A List Apart. All you need to do to force any element’s height to scale according to its width is to put it in a container and apply top padding as a percentage:</p>
    <pre><code>&#x000A;    .iframe-container {&#x000A;      width: 100%;&#x000A;      height: 0; &#x000A;      overflow: hidden;&#x000A;    &#x000A;      /* element ratio is 4:3 (3/4 * 100) */&#x000A;      padding-top: 75%; &#x000A;    }&#x000A;    &#x000A;    .iframe-container iframe {&#x000A;      position: absolute;&#x000A;      width: 100%;&#x000A;      height: 100%;&#x000A;      top: 0;&#x000A;      left: 0;&#x000A;    }&#x000A;    </code></pre>
    <p><strong>Window height on iPhone</strong></p>
    <p>Mobile Safari on iPhone and iPod has a nasty bug: the height of the window is always reduced by the height of the navigation bar, whether the bar is present or not, so the popup won’t center correctly. When researching this issue, I found two ways to fix it:</p>
    <ol>
    <li>Just add 60 pixels to the height of the window. This solution doesn’t work with iOS 6’s full-screen mode, and it’s not future-friendly.</li>
    <li>Use <code>window.innerHeight</code> instead of <code>document.documentElement.clientHeight</code>, which returns the correct value, but only when the window is not zoomed in.</li>
    </ol>
    <p>But I’ve figured out a third way to implement this (for more details on this technique, check <a href="http://stackoverflow.com/a/15717609/331460" rel="nofollow external" class="bo">my answer on Stack Overflow</a>):</p>
    <pre><code>&#x000A;    var getIphoneWindowHeight = function() {&#x000A;      // Get zoom level of mobile Safari&#x000A;      // Such zoom detection might not work correctly on other platforms&#x000A;      // &#x000A;      var zoomLevel = document.documentElement.clientWidth / window.innerWidth;&#x000A;    &#x000A;      // window.innerHeight returns height of the visible area. &#x000A;      // We multiply it by zoom and get our real height.&#x000A;      return window.innerHeight * zoomLevel;&#x000A;    };&#x000A;    </code></pre>
    <p>If you know of a better way to position elements than what’s suggested here, we’d be hugely grateful to hear!</p>
    <h4>Preload Adjacent Images in Gallery</h4>
    <p>Preloading images in a gallery is essential and vastly increases browsing speed. The average modern browser <a href="http://www.browserscope.org/?category=network" rel="nofollow external" class="bo">accepts about six connections per host name</a>, whereas IE 7 accepts only two.</p>
    <p>After the lightbox gallery is opened, it should start loading not one, but a group of images (the number of items in a group should depend on the size of the images and on how likely your visitor will navigate to the next one — test it!). Don’t even think about waiting to load the next image until after the current one has completely loaded; otherwise, it will reduce browsing speed significantly.</p>
    <p>In Magnific Popup, you can set the number of images to preload before and after the current one, and these two values will automatically switch according to the direction in which the user is navigating.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/03/parallel-loading.png" rel="nofollow external" class="bo"><img alt="Parallel loading" src="http://media.smashingmagazine.com/wp-content/uploads/2013/03/parallel-loading.png" width="500" height="402" style="max-width: 100%; height: auto;"><br>
    <em>Inaccurate comparison between parallel and one-by-one loading.</em></a></p>
    <h4>High-DPI Display Support</h4>
    <p>Magnific Popup’s default controls are made with pure CSS, without any external resources. Thus, the controls are not only light, but also ready for high-DPI (i.e. Retina) displays. But in this section of the article I’d like to talk about serving images for displays with high pixel density.</p>
    <p>It’s not hard to change the path, as the image in lightbox is loaded dynamically. The main problem is that the image should be scaled by half (for 2x device pixel ratio). It rises the question: <strong>how to get the image size via JavaScript</strong> without waiting until it is completely loaded to keep progressive loading?</p>
    <p>While researching, I’ve found that the image <code>naturalWidth</code> is defined exactly after browser gets its size. So we just fire an interval that checks if the image object has defined <code>naturalWidth</code>, after it has it we scale the image by applying <code>max-width</code> that equals <code>image.naturalWidth / window.devicePixelRatio</code>. Here is simplified version of how the image loading is implemented:</p>
    <pre><code>&#x000A;    var interval,&#x000A;    	hasSize,&#x000A;    	onHasSize = function() {&#x000A;    		if(hasSize) return;&#x000A;    &#x000A;    		// we ignore browsers that don't support naturalWidth&#x000A;    		var naturalWidth = img[0].naturalWidth;&#x000A;    &#x000A;    		if(window.devicePixelRatio &gt; 1 &amp;&amp; naturalWidth &gt; 0) {&#x000A;    			img.css('max-width', naturalWidth / window.devicePixelRatio);&#x000A;    		}&#x000A;    &#x000A;    		clearInterval(interval);&#x000A;    		hasSize = true;&#x000A;    	},&#x000A;    	onLoaded = function() {&#x000A;    		onHasSize();&#x000A;    	},&#x000A;    	onError = function() {&#x000A;    		onHasSize();&#x000A;    	},&#x000A;    	checkSize = function() {&#x000A;    		if(img[0].naturalWidth &gt; 0) {&#x000A;    			onHasSize();&#x000A;    		}&#x000A;    	},&#x000A;    	img = $('&lt;img /&gt;')&#x000A;    		.on('load', onLoaded)&#x000A;    		.on('error', onError)&#x000A;    		// hd-image.jpg is optimized for the current pixel density&#x000A;    		.attr('src', 'hd-image.jpg') &#x000A;    		.appendTo(someContainer);&#x000A;    &#x000A;    interval = setInterval(checkSize, 100);&#x000A;    checkSize();&#x000A;    </code></pre>
    <p>There is a very common assumption that the image optimized for Retina display weighs two times or more than the normal one, but <strong>it’s not always true</strong>. As the image will be scaled down, JPEG quality can be reduced without any notable visual difference. From my experience, saving an image for 2x pixel ratio with 25% JPEG quality produces a good-looking result and the file size is only about 1.4x times larger than the regular one. Daan Jobsis has a <a href="http://blog.netvlies.nl/design-interactie/retina-revolution/" rel="nofollow external" class="bo">great article</a> that covers this technique.</p>
    <p>What image to serve on what screen size is a topic for another article. I just want to emphasize that for many users mobile is the only way to access the internet. If you serve smaller images for mobile and there is a chance that user will need full-sized ones — provide an alternative way to get it.</p>
    <h4>Avoid Extra HTTP Requests for Controls</h4>
    <p>Preload all controls (i.e. the arrows, the closing icon, the preloader) before the popup has opened in order to load the actual content faster. This can be implemented in three ways:</p>
    <ul>
    <li>Create all controls with CSS only (as Magnific Popup does by default).</li>
    <li>Include the control graphics in the main CSS sprite of your website, or preload them with CSS before the popup has opened.</li>
    <li>Use the <a href="http://en.wikipedia.org/wiki/Data_URI_scheme" rel="nofollow external" class="bo">Data URI scheme</a> to embed base64-encoded images directly in the CSS (supported by IE 8 and above).</li>
    </ul>
    <h3>2. Accessibility</h3>
    <p>Content that has opened in the lightbox should be easily zoomable and scrollable, no matter what the device. The contents and controls of the popup should be accessible with the tab key for keyboard users.</p>
    <h4>Conditional Lightbox</h4>
    <p>This relatively new technique, <a href="http://bradfrostweb.com/blog/post/conditional-lightbox/" rel="nofollow external" class="bo">introduced by Brad Frost</a>, disables the lightbox entirely on devices with a small screen, substituting an alternative more appropriate to mobile use. Here are some examples:</p>
    <ul>
    <li>Open maps and videos as a separate page. Many mobile browsers will recognize such links and open a dedicated app that is much easier to use.</li>
    <li>Simply open images in a new page for easier zooming and panning.</li>
    <li>Open long text-based popups in a new page. In Magnific Popup, you can do this by adding the source of the popup inside a data attribute and linking to a mobile-friendly page in the <code>href</code> attribute. For example:
    <pre><code>&lt;a href="separate-mobile-friendly-page.html" data-mfp-src="popup-content.html"&gt;Open popup&lt;/a&gt;</code></pre>
    <p>Here is the popup initialization (with an option that disables the popup and just opens the link when the window is narrower than 500 pixels):</p>
    <pre><code>&#x000A;    $('.popup-link').magnificPopup(function() {&#x000A;      disableOn: function() {&#x000A;        // Detect here whether you want to show the popup&#x000A;        // return true if you want&#x000A;        if($(window).width() &lt; 500) {&#x000A;          return false;&#x000A;        }&#x000A;        return true;&#x000A;      }&#x000A;    });&#x000A;    </code></pre>
    </li>
    </ul>
    <h4>Progressive Enhancement</h4>
    <p>Build the markup as if there were no JavaScript at all, and make the button that opens the content-oriented lightbox link to the content. Not only is this an enhancement for users without JavaScript, but it allows you to open the content in a new window, and it makes it completely SEO-friendly. <strong>Images will be perfectly indexed by search engines</strong>, and the anchor text will work as an <code>alt</code> attribute in the <code>img</code> tag.</p>
    <pre><code>&lt;!-- Correct: --&gt;&#x000A;    &lt;a href="image.jpg"&gt;Description of the image&lt;/a&gt;&#x000A;    &#x000A;    &lt;!-- Incorrect: --&gt;&#x000A;    &lt;a href="#" data-src="image.jpg"&gt;Description of the image&lt;/a&gt;&#x000A;    &#x000A;    &lt;!-- Correct: --&gt;&#x000A;    &lt;a href="large-image.jpg"&gt;&#x000A;      &lt;img src="thumbail.jpg" alt="Description of the image" /&gt;&#x000A;    &lt;/a&gt;&#x000A;    &#x000A;    &lt;!-- Incorrect: --&gt;&#x000A;    &lt;img src="thumbail.jpg" data-src="large-image.jpg" alt="Description of the image" /&gt;&#x000A;    </code></pre>
    <h4>Selectable Image</h4>
    <p>Users should be able to select and copy an image that is opened in a popup. This is one of the few ways to bookmark, save or share it.</p>
    <p>Presently, fully overlaying a lightbox image with left and right navigation arrows is very common. The screenshots below show context menus above the image (the one on the right is overlaid with a transparent div, making any kind of interaction with the image virtually impossible).</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/03/accessible-image.jpg" rel="nofollow external" class="bo"><img alt="accessible image" src="http://media.smashingmagazine.com/wp-content/uploads/2013/03/accessible-image.jpg" width="500" height="292" style="max-width: 100%; height: auto;"></a></p>
    <h4>position: fixed and overflow: scroll</h4>
    <p>Zooming a fixed-positioned element looks unnatural and confusing in the majority of mobile browsers. I suggest avoiding this property entirely on devices on which content is likely to be zoomed.</p>
    <p>Exactly the same problem happens when you apply <code>overflow: scroll</code> to a popup’s wrapper. In this case, the problem is an <strong>unnatural scroll</strong>:</p>
    <ul>
    <li>Once the user has reached the end of the scroll, the main window starts scrolling behind the popup.</li>
    <li>Scrolling momentum is missing. On iOS 5+, this issue can be fixed with <code>-webkit-overflow-scrolling: touch</code>, but what about other devices?</li>
    </ul>
    <p>Magnific Popup automatically disables these properties on mobile devices. Instead of using a fixed positon, it adds a huge dark overlay to the whole page that equals the height of the document and that positions the content area using <code>position: absolute</code> and with a <code>top</code> that equals the <code>scrollTop</code> of the window.</p>
    <h4>Keyboard Focus</h4>
    <p>Upon loading, the focus should be set on the popup itself or on the first input (if it is a form). When tabbing, focus should be confined to the lightbox and its controls. After the popup has closed, focus should return to its original location. This can be implemented very simply:</p>
    <pre><code>&#x000A;    // Save current focused element&#x000A;    var lastFocusedElement = document.activeElement;&#x000A;    &#x000A;    // Set focus on some element in lightbox&#x000A;    $('#input').focus();&#x000A;    &#x000A;    // After lightbox is closed, put it back&#x000A;    if(lastFocusedElement)&#x000A;      $(lastFocusedElement).focus();&#x000A;    </code></pre>
    <p>Roger Johansson’s great article “<a href="http://www.456bereastreet.com/archive/200910/lightboxes_and_keyboard_accessibility/" rel="nofollow external" class="bo">Lightboxes and Keyboard Accessibility</a>” discusses this topic and the overall keyboard accessibility of lightboxes.</p>
    <h4>Touch Swipe Support</h4>
    <p>The main problem with the swipe gesture on touch devices is that it requires blocking the default behavior of the <code>touchmove</code> event (<code>e.preventDefault()</code>), which blocks the zooming and panning gesture.</p>
    <p>There are just two ways to enable swiping and zooming at once:</p>
    <ol>
    <li>Emulate zooming behavior with help of JavaScript touch events by changing the <code>transform</code> property of the content’s container. <strong>But</strong> this requires recalculating the content’s size, which breaks our CSS-based resizing technique and is not reliable when there are interactive elements such as iframes. Without a doubt, the library that implements such zooming and panning the best is <a href="http://cubiq.org/iscroll-4" rel="nofollow external" class="bo">iScroll</a> by Matteo Spinelli.</li>
    <li>Don’t inhibit the default behavior of browser zooming when two touch pointers are detected. <strong>But</strong> finding the difference between panning and swiping is very hard because detection of the browser’s zoom level is unreliable.</li>
    </ol>
    <p>By design, the main purpose of a lightbox is to show enlarged versions of images. So, we would conclude that natural zooming is much more important than swiping. That is why Magnific Popup does not have swiping support. Navigation between gallery items is implemented simply by tapping on arrows with a large hit area.</p>
    <p><strong>But if you really need swiping</strong>, there are some ways to implement it:</p>
    <ul>
    <li>If you don’t need a dragging effect, use something like the <a href="http://labs.rampinteractive.co.uk/touchSwipe/demos/" rel="nofollow external" class="bo">TouchSwipe</a> plugin.</li>
    <li>If you need touch navigation with a dragging effect, open in the popup some slideshow plugin with touch support, such as <a href="http://www.woothemes.com/flexslider/" rel="nofollow external" class="bo">FlexSlider</a> or (mine) <a href="http://dimsemenov.com/plugins/royal-slider/" rel="nofollow external" class="bo">RoyalSlider</a>.</li>
    <li>Use a conditional lightbox technique and create a separate mobile-friendly page that has just a list of stacked images.</li>
    </ul>
    <p>If we disable the swiping gesture, we should at least make tap navigation faster. Mobile browsers wait about 300 milliseconds before firing a click event in case they detect a double-tap event. This can be fixed with the popular “fast click” technique, which fires a click on <code>touchend</code>. Ryan Fioravanti of Google has a <a href="https://developers.google.com/mobile/articles/fast_buttons" rel="nofollow external" class="bo">complete guide</a> on it.</p>
    <h3>3. User Interface</h3>
    <p>Some devices allow multiple types of input at once (such as touching and mousing). We conclude that we cannot require mouseovers (<code>:hover</code>) for important UI elements, and we cannot neglect mouse events if touch support is present.</p>
    <p>Apple’s “Human Interface Guidelines” for iOS <a href="http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/mobilehig/Characteristics/Characteristics.html" rel="nofollow external" class="bo">state</a> that a comfortable size for a tappable UI element is at least 44 × 44 pixels. Assuming that any device with any screen size may have touch support, we’ll apply as large a hit area as possible by default.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/03/hit-areas-2.jpg" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/03/hit-areas-2.jpg" alt="Hit area for buttons" width="500" height="419" style="max-width: 100%; height: auto;"></a><br>
    <em>Red rectangles show the hit area for the controls. (Image: <a href="http://en.wikipedia.org/wiki/User:JJ_Harrison" rel="nofollow external" class="bo">JJ Harrison</a>)</em></p>
    <p>Now <strong>let’s talk about actual implementation</strong>. First of all, buttons are rendered as <code>&lt;button&gt;</code> elements. Here is why:</p>
    <ul>
    <li>A button can have a title attribute, which we can use to describe what the button does and its keyboard shortcut.</li>
    <li>Buttons, unlike <code>&lt;a&gt;</code> elements, do not require hacks such as <code>href="#"</code> and <code>href="javascript:void()"</code>. When the cursor hovers over a link, many browsers will show the contents of the <code>href</code> attribute in the bottom-left corner of the browser window; displaying <code>javascript:void()</code> would look quite illogical.</li>
    <li>Buttons are the most semantically correct approach for such controls.</li>
    </ul>
    <p>I recommend reading Nicholas Zakas’ article “<a href="http://www.nczonline.net/blog/2013/01/29/you-cant-create-a-button/" rel="nofollow external" class="bo">You Can’t Create a Button</a>,” which offers a few more arguments in favor of using <code>&lt;button&gt;</code> elements.</p>
    <h4>The Close Button</h4>
    <p>The closing icon is just a math multiplication sign (<code>×</code>) rendered in Arial. I strongly recommend avoiding specifying multiple fonts (like <code>font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif</code>) because the position and size of the multiplication sign is very inconsistent across fonts.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/04/close-icon-fonts-2.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/04/close-icon-fonts-2.png" alt="close-icon-fonts-2" width="500" height="89" style="max-width: 100%; height: auto;"></a><br>
    <em>The multiplication sign in different fonts: Arial, Georgia, Lucida Grande, Helvetica, Helvetica Neue, Roboto.</em></p>
    <h4>Next and Previous Buttons</h4>
    <p>The main requirement for default arrow icons is that they should be visible on any background. At first glance, the best option is to use Unicode <a href="http://css-tricks.com/triangle-with-shadow/" rel="nofollow external" class="bo">triangles with shadow</a>, but it turns out that there are no equally sized left and right triangles.</p>
    <p>The only remaining option is to use two nested triangles with different colors. Here is how that’s done:</p>
    <pre><code>&#x000A;    .double-triangle {&#x000A;      width: 90px;&#x000A;      height: 110px;&#x000A;    }&#x000A;    &#x000A;    .double-triangle:before, &#x000A;    .double-triangle:after {&#x000A;      display: block;&#x000A;      width: 0;&#x000A;      height: 0;&#x000A;      position: absolute;&#x000A;      left: 0;&#x000A;      top: 0;&#x000A;      margin-top: 35px;&#x000A;      margin-left: 35px; &#x000A;    }&#x000A;    .double-triangle:after {&#x000A;      content: '';&#x000A;      border-top: 12px solid transparent;&#x000A;      border-bottom: 12px solid transparent;&#x000A;      border-right: 12px solid black;&#x000A;      top: 8px; &#x000A;      left: 5px;&#x000A;    }&#x000A;    .double-triangle:before {&#x000A;      content: '';&#x000A;      border-top: 20px solid transparent;&#x000A;      border-bottom: 20px solid transparent; &#x000A;      border-right: 20px solid white;&#x000A;    }&#x000A;    </code></pre>
    <p>Because of pseudo-elements, such an implementation will not work in IE 7. Navigation buttons are an important part of the UI, so I decided to write a small polyfill to make it work in IE 7, too. We just add two elements inside the button and apply the same styles as the <code>:before</code> and <code>:after</code> elements.</p>
    <pre><code>&#x000A;    var button = $('&lt;button class="double-triangle"&gt;&lt;/button&gt;');&#x000A;    if(ie7) {&#x000A;      button.append('&lt;span class="ie-before"&gt;&lt;/span&gt;&lt;span class="ie-after"&gt;&lt;/span&gt;');&#x000A;    }&#x000A;    </code></pre>
    <p>Here’s the CSS:</p>
    <pre><code>&#x000A;    .double-triangle:before,&#x000A;    .dobule-triangle .ie-before { &#x000A;      /* styles ... */&#x000A;    }&#x000A;    </code></pre>
    <h4>Cursors</h4>
    <p>I am a big fan of custom cursors; they are a lovely addition to an interface. The <code>zoom-in</code> and <code>zoom-out</code> cursors make very clear that content may be enlarged or reduced, while the <code>progress</code> cursor is an excellent loading indicator of AJAX-based popups. Sadly, zoom cursors are still not supported by IE 10.</p>
    <pre><code>&#x000A;    .zoom-in-cur {&#x000A;       cursor: -webkit-zoom-in;&#x000A;       cursor: -moz-zoom-in;&#x000A;       cursor: zoom-in;&#x000A;    }&#x000A;    .zoom-out-cur {&#x000A;       cursor: -webkit-zoom-out;&#x000A;       cursor: -moz-zoom-out;&#x000A;       cursor: zoom-out;&#x000A;    }&#x000A;    .progress-cur {&#x000A;      cursor: progress;&#x000A;    }&#x000A;    </code></pre>
    <h4>Animation</h4>
    <p>The main rule of in and out animation for a lightbox is <strong>make sure you need it</strong>. If you do, at least keep it short (shorter than 300 milliseconds). Avoid animation if you anticipate a large image or a huge block of HTML in a lightbox.</p>
    <p>Magnific Popup does not use JavaScript animation at all. Instead, it uses light and fast CSS transitions. Browsers that don’t support transitions are most likely slow, and thus JavaScript animation would look choppy in them.</p>
    <p>One more <strong>important point</strong>: As I said before, Magnific Popup automatically disables <code>position: fixed</code> on mobile devices and creates a tall dark overlay on the page. Animating such a block might cause mobile devices to lag, so I suggest forcing <code>position: fixed</code> for the background and keeping <code>position: absolute</code> for the content itself.</p>
    <p>And here’s a pro tip: To make your sliding animation a little smoother, <a href="http://paulirish.com/2012/why-moving-elements-with-translate-is-better-than-posabs-topleft/" rel="nofollow external" class="bo">Paul Irish suggests</a> animating the <code>translateY</code> property, instead of <code>top</code> or <code>margin-top</code>.</p>
    <h3>In Summary</h3>
    <p>A responsive lightbox is not one that scales down proportionally when the screen’s size changes. It’s the one that provides fully accessible content, whatever the device.</p>
    <p>No matter what script you use, it should support these standards:</p>
    <ul>
    <li>Escape key to close the popup.</li>
    <li>Left and right arrow keys to navigate the gallery.</li>
    <li>Tab key to navigate the contents of the popup.</li>
    <li>If there is a single image, the lightbox should close when any part of the image is clicked.</li>
    <li>If it is a gallery, clicking on the current image should advance to the next image. Check out the <a href="http://ux.stackexchange.com/questions/31187/should-the-image-popup-be-closed-when-clicking-on-image" rel="nofollow external" class="bo">discussion on UX Stack Exchange</a> for more information.</li>
    <li>A gallery should be clearly indicated: “1 of 10” counters, arrows, bullets, thumbnails, or any combination of these.</li>
    </ul>
    <h4>Useful Related Resources</h4>
    <ul>
    <li>“<a href="http://ux.stackexchange.com/questions/4947/the-usability-of-lightbox-uis" rel="nofollow external" class="bo">The Usability of ‘Lightbox UIs’</a>,” UX Stack Exchange</li>
    <li>“<a href="http://ux.stackexchange.com/questions/31344/should-we-keep-image-popup-after-page-refresh" rel="nofollow external" class="bo">Should We Keep Image Popup After Page Refresh?</a>” UX Stack Exchange</li>
    <li>“<a href="http://www.quora.com/User-Experience/Are-lightboxes-good-UX" rel="nofollow external" class="bo">Are Lightboxes Good UX?</a>,” Quora</li>
    <li>
    <a href="http://lokeshdhakar.com/projects/lightbox2/" rel="nofollow external" class="bo">Lightbox 2</a>, Lokesh Dhakar<br> The original lightbox plugin</li>
    <li>“<a href="http://yuiblog.com/blog/2008/10/29/imageopt-1/" rel="nofollow external" class="bo">Image Optimization, Part 1: The Importance of Images</a>,” Stoyan Stefanov</li>
    <li>“<a href="http://alistapart.com/article/improving-ux-through-front-end-performance" rel="nofollow external" class="bo">Improving UX Through Front-End Performance</a>,” Lara Swanson, A List Apart</li>
    </ul>
    <p>I hope this article and script will be useful to some. For more techniques, dig into the code of Magnific Popup in the <a href="https://github.com/dimsemenov/Magnific-Popup" rel="nofollow external" class="bo">GitHub repository</a>.</p>
    <p><em>(al) (ea)</em></p>
    <hr>
    <p><small>© Dmitry Semenov for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        A lightbox is one of those tools that work great on the desktop but often fail on small mobile devices. These days, finding a plugin that is responsive and that displays content right away...</Summary>
<Website>http://www.smashingmagazine.com/2013/05/02/magnific-popup-a-truly-responsive-lightbox/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28575/guest@my.umbc.edu/9fbcbe77c8fbda966a92261c159fba2a/api/pixel</TrackingUrl>
<Tag>coding</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 02 May 2013 07:48:21 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="28574" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28574">
<Title>Ken and Ben Lerer Share Their Top 5 Secrets to Success for Young Entrepreneurs</Title>
<Body>
<![CDATA[
    <div class="html-content">Big players in New York City's startup ecosystem, the investors behind Lerer Ventures provide insight into what they believe helps entrepreneurs reach their goals.</div>
]]>
</Body>
<Summary>Big players in New York City's startup ecosystem, the investors behind Lerer Ventures provide insight into what they believe helps entrepreneurs reach their goals.</Summary>
<Website>http://feedproxy.google.com/~r/YoungentrepreneurcomBlog/~3/Zcls1eGxJaQ/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28574/guest@my.umbc.edu/401f968c58571add580e4ef278f06dd8/api/pixel</TrackingUrl>
<Tag>angel-investors</Tag>
<Tag>financing</Tag>
<Tag>funding</Tag>
<Tag>investors</Tag>
<Tag>lerer-ventures</Tag>
<Tag>startup-finance</Tag>
<Tag>startup-financing</Tag>
<Tag>startup-funding</Tag>
<Tag>startup-news</Tag>
<Tag>venture-capital</Tag>
<Group token="entrepreneurship">Alex. Brown Center for Entrepreneurship</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/entrepreneurship</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/original.jpg?1771000363</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/large.png?1771000363</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/medium.png?1771000363</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/small.png?1771000363</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxsmall.png?1771000363</AvatarUrl>
<Sponsor>The Alex. Brown Center for Entrepreneurship</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 02 May 2013 07:00:23 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="29099" important="false" status="posted" url="https://my3.my.umbc.edu/posts/29099">
<Title>Announcing Generate: .net's first ever conference!</Title>
<Body>
<![CDATA[
    <div class="html-content">Join us for a day of outstanding speakers including Mark Boulton and Oliver Reichenstein<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fannouncing-generate-nets-first-ever-conference-132723&amp;t=Announcing+Generate%3A+.net%27s+first+ever+conference%21" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fannouncing-generate-nets-first-ever-conference-132723&amp;t=Announcing+Generate%3A+.net%27s+first+ever+conference%21" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fannouncing-generate-nets-first-ever-conference-132723&amp;t=Announcing+Generate%3A+.net%27s+first+ever+conference%21" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fannouncing-generate-nets-first-ever-conference-132723&amp;t=Announcing+Generate%3A+.net%27s+first+ever+conference%21" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fannouncing-generate-nets-first-ever-conference-132723&amp;t=Announcing+Generate%3A+.net%27s+first+ever+conference%21" 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/164876702245/u/49/f/502346/c/32632/s/2b9df6ac/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/164876702245/u/49/f/502346/c/32632/s/2b9df6ac/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Join us for a day of outstanding speakers including Mark Boulton and Oliver Reichenstein     </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/blNhi5PSX24/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/29099/guest@my.umbc.edu/6d5567de3ee67e3931cf2417cfc0cf9e/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 02 May 2013 06:59:51 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="29100" important="false" status="posted" url="https://my3.my.umbc.edu/posts/29100">
<Title>Master class</Title>
<Body>
<![CDATA[
    <div class="html-content">A young entrepreneur can’t make the sums add up, so he seeks advice from a wise guru<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Fopinions%2Fmaster-class&amp;t=Master+class" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.netmagazine.com%2Fopinions%2Fmaster-class&amp;t=Master+class" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.netmagazine.com%2Fopinions%2Fmaster-class&amp;t=Master+class" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.netmagazine.com%2Fopinions%2Fmaster-class&amp;t=Master+class" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.netmagazine.com%2Fopinions%2Fmaster-class&amp;t=Master+class" 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/164876702244/u/49/f/502346/c/32632/s/2b9df6ad/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/164876702244/u/49/f/502346/c/32632/s/2b9df6ad/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>A young entrepreneur can’t make the sums add up, so he seeks advice from a wise guru     </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/_DZ8AtG1JJc/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/29100/guest@my.umbc.edu/d18f1458a9318ce3309f179e580c5c7b/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 02 May 2013 06:00:57 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="28573" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28573">
<Title>15 really creative 404 pages</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/thumb13.jpg" alt="Thumb" width="200" height="160" style="max-width: 100%; height: auto;">We’ve talked about ‘Contact’ pages. We’ve talked about the ‘About’ page. You know what to put on these pages because, hopefully, you’ve thought long and hard about it. And you know exactly what to put on the inside pages, because you have your content for those as well. You think you’ve got it all covered, right?</p> <p>Think again! You have the opportunity to design and make use of your 404 error page. And quite frankly, you’re not a cool kid if you don’t have a super cool 404 page. Why do we go above and beyond for these basic error pages? Well, because we can. It’s like a little hidden world that you often hope no one will see. But if they do get a chance to see it, you’ll want to make sure it’s a looker.</p> <p>There are two options when talking about designing 404 pages. Since it is technically a page reached in error, you can make your 404 completely functional so it helps return your viewers to relevant content. The second option (which many seem to fancy), is to make your 404 page your own little creative space. It can be an awesome illustration or picture or it’s own page to which people will be desperate to return.</p> <p>There are many ways to go about each and today, we are going to take a look at a few. Let’s jump right in.</p> <p> </p> <h1>Gig Masters</h1> <p>We will start off with a very practical 404 page. Here, when we stumble upon this error, we are quite aware that we’ve gotten here on accident. The page offers a link for you to return to the homepage or you could complete a search and get the results. It’s very straight-forward and fits into the visual branding of the site.</p> <p><a href="http://www.gigmasters.com/404/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/GigMasters-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Qype</h1> <p>Qype have created another rather practical use of their 404 page by allowing you to return home or search all the categories the site has. They also offer answers to questions you may have as well. In addition to the practical use, they did add a bit of flair by creating a very beautiful, high quality illustration that refers to their brand’s use. </p> <p><a href="http://www.qype.co.uk/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/QYPE-404-Page-Not-Found-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Klapp</h1> <p>Klapp has created a very interesting use for their 404 page. They’ve created an entire game you can play while you determine what you want to do next. It’s a very fun game. It’s actually very addictive. But when the game is over, the game is over and you’re forced to get back on track. Or try to get lost again. </p> <p><a href="http://www.qype.co.uk/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/404-Klapp-Media-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Audiko</h1> <p>Again, this brand has decided they want to couple the most obvious use of returning the viewer to the correct page with creating an amazing illustration for you to view. The difference here is Audiko has created such a focus with this illustration that all you want to do is marvel at it and find your way back later. </p> <p><a href="http://audiko.net/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/Free-Ringtones-for-iPhone-Mobile-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>The Movie Nerd</h1> <p>The Movie Nerd has used a clever little iteration of their logo to characterize their 404 page. That’s extremely smart and consistent branding. Because of the very visible navigational bar up top, they didn’t see the need to make sure the viewer needed to be redirected.  </p> <p><a href="http://www.themovienerd.com/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/Page-Not-Found-The-Movie-Nerd-The-Movie-Nerd-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Inriality</h1> <p>Here’s another use of illustrations in 404 pages. While I’m unsure of what it says (due to the language barrier), I can assume it says something to the effect of ‘Click here to return to Inriality.’ Obviously, when you click the picture of the illustration, you’re redirected to the homepage. </p> <p><a href="http://www.inriality.fr/404/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/Inriality-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Davidwashere</h1> <p>What I like about this 404 page is it’s simplicity. Not only that, but while it’s straightforward, the brand has decided to let a bit of their personality come out with some of the instructions. It’s a very easy way to approach the 404 page.</p> <p><a href="http://davidsbeenhere.com/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/Davidsbeenhere.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Illucolor</h1> <p>This is another very clever graphic. It seems as if your Internet is broken and you need to get it fixed. Again, I’ll have to assume the graphic says to click somewhere to refer to the home page, but again it’s another attempt at a semi-practical, yet highly visual 404 page. </p> <p><a href="http://www.illucolor.fr/illucolor404.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/404-Not-Found-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>I love Icons</h1> <p>This 404 page doesn’t have much to do with anything. In fact, if you stumbled upon this page you’d probably be extremely lost. However, that does not change the fact that in it’s simplicity, this is just a beautiful image. And the faint “404″ is a nice touch.  </p> <p><a href="http://iloveicons.ru/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/%D0%A1%D1%82%D1%80%D0%B0%D0%BD%D0%B8%D1%86%D0%B0-%D0%BD%D0%B5-%D0%BD%D0%B0%D0%B9%D0%B4%D0%B5%D0%BD%D0%B0-%D0%AF-%D0%BB%D1%8E%D0%B1%D0%BB%D1%8E-%D0%B8%D0%BA%D0%BE%D0%BD%D0%BA%D0%B8-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Bellstrike</h1> <p>Another simply beautiful 404 page. The illustration is exceptionally consistent with the visual image throughout the web site. This 404 page lets you know you’ve stumbled upon the wrong page, but you’re still on the right site, which is extremely important.</p> <p><a href="http://bellstrike.com/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/bellstrike-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Molome</h1> <p>Well, this 404 page is just plain cute. Molome obviously wanted a chance to show their graphic skills and weren’t too worried about directing the viewer back home. That’s fine though, because again, the navigation is very visible. The 404 page is an extension of the brand. </p> <p><a href="http://molo.me/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/MOLOME-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>The Many Faces Of…</h1> <p> We sometimes like to crowd the Internet with parody sites and sites used to poke fun at (or honor) certain people. The Many Faces of Leonardo DiCaprio seems to do one of those, creating little meme faces from Leo himself. for the 404 page, why not keep it the same? This is a very fun approach to 404 pages.</p> <p><a href="http://themanyfacesof.com/four-oh-four/leo.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/The-Many-Faces-Of%E2%80%A6-Page-not-found-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Focus Lab</h1> <p>Focus Lab’s approach to the 404 page is pretty simple and straight-forward as well. I like this one because, again, you get to see the 404 copy in the brands voice. However, this time, instead of directing the viewer to the homepage, Focus Lab directs the viewer to some of the most important pages in the web site.</p> <p><a href="http://focuslabllc.com/say-what" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/We-see-youve-lost-your-way-Focus-Lab-LLC-Branding-ExpressionEngine-Experts-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Mic Check 404</h1> <p>While this is just a concept, this is indeed a very clever concept. I mean, what else do you do when you’re trying to make sure something’s right? You test it! </p> <p><a href="http://dribbble.com/shots/729002-404/attachments/69396" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/miccheck404.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Kiss.com</h1> <p>Another concept, Kiss.com takes a completely different approach to the content on the 404 page. Instead of directing people to the homepage or other pages, we’re doing something different here. They ask you to submit a support ticket so they can fix the problem, which makes sense. Because after all, it is an error page, right?</p> <p><a href="http://dribbble.com/shots/962726-Page-Does-not-Exist/attachments/110068" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/404_kisscom.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Dribbble 404</h1> <p>This is another concept a designer on Dribbble created. They became so close to the brand, they developed a 404 page for them. Now, this is just extremely clever because of the branding of Dribbble as well as the copy on the page. Dribbble should see this and implement it. Immediately! </p> <p><a href="http://dannypostma.com/dribbble/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/dribbbl404concept-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Conclusion</h1> <p>404 pages don’t have to be these bland pages controlled by the web and different browsers. You can take control of yours today. You may want to go simple or you may decide to be completely extravagant in your approach. But remember the 404 page should always be a solid representation of you and your work. </p> <p><em><strong>Have you worked on a 404 page design lately? Have any favorites? 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/myapptemplates.html?ref=inwidget" rel="nofollow external" class="bo"><strong>High-Quality iPhone App Template Bundle – 92% off!</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" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/05/15-really-creative-404-pages/" rel="nofollow external" class="bo">Source</a> <div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F05%2F15-really-creative-404-pages%2F&amp;t=15+really+creative+404+pages" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F05%2F15-really-creative-404-pages%2F&amp;t=15+really+creative+404+pages" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F05%2F15-really-creative-404-pages%2F&amp;t=15+really+creative+404+pages" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F05%2F15-really-creative-404-pages%2F&amp;t=15+really+creative+404+pages" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F05%2F15-really-creative-404-pages%2F&amp;t=15+really+creative+404+pages" 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/164876685519/u/49/f/657673/c/35285/s/2b6ae61f/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/164876685519/u/49/f/657673/c/35285/s/2b6ae61f/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>We’ve talked about ‘Contact’ pages. We’ve talked about the ‘About’ page. You know what to put on these pages because, hopefully, you’ve thought long and hard about it. And you know exactly what to...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/657673/s/2b6ae61f/l/0L0Swebdesignerdepot0N0C20A130C0A50C150Ereally0Ecreative0E40A40Epages0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28573/guest@my.umbc.edu/eda16bf464106a6c6c8e89a2ce2ed552/api/pixel</TrackingUrl>
<Tag>404-pages</Tag>
<Tag>art</Tag>
<Tag>audiko</Tag>
<Tag>bellstrike</Tag>
<Tag>css</Tag>
<Tag>davidwashere</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>dribbble-404</Tag>
<Tag>focus-lab</Tag>
<Tag>gig-masters</Tag>
<Tag>good-404-pages</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>i-love-icons</Tag>
<Tag>illucolor</Tag>
<Tag>illustrator</Tag>
<Tag>information-architecture</Tag>
<Tag>inriality</Tag>
<Tag>inspiration</Tag>
<Tag>javascript</Tag>
<Tag>kiss-com</Tag>
<Tag>klapp</Tag>
<Tag>mic-check</Tag>
<Tag>molome</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>qype</Tag>
<Tag>sql</Tag>
<Tag>the-many-faces-of</Tag>
<Tag>the-movie-nerd</Tag>
<Tag>web-design</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>Thu, 02 May 2013 05:15:19 -0400</PostedAt>
<EditAt>Thu, 02 May 2013 05:15:19 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="28972" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28972">
<Title>15 really creative 404 pages</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/thumb13.jpg" alt="Thumb" width="200" height="160" style="max-width: 100%; height: auto;">We’ve talked about ‘Contact’ pages. We’ve talked about the ‘About’ page. You know what to put on these pages because, hopefully, you’ve thought long and hard about it. And you know exactly what to put on the inside pages, because you have your content for those as well. You think you’ve got it all covered, right?</p>
    <p>Think again! You have the opportunity to design and make use of your 404 error page. And quite frankly, you’re not a cool kid if you don’t have a super cool 404 page. Why do we go above and beyond for these basic error pages? Well, because we can. It’s like a little hidden world that you often hope no one will see. But if they do get a chance to see it, you’ll want to make sure it’s a looker.</p>
    <p>There are two options when talking about designing 404 pages. Since it is technically a page reached in error, you can make your 404 completely functional so it helps return your viewers to relevant content. The second option (which many seem to fancy), is to make your 404 page your own little creative space. It can be an awesome illustration or picture or it’s own page to which people will be desperate to return.</p>
    <p>There are many ways to go about each and today, we are going to take a look at a few. Let’s jump right in.</p>
    <p> </p>
    <h1>Gig Masters</h1>
    <p>We will start off with a very practical 404 page. Here, when we stumble upon this error, we are quite aware that we’ve gotten here on accident. The page offers a link for you to return to the homepage or you could complete a search and get the results. It’s very straight-forward and fits into the visual branding of the site.</p>
    <p><a href="http://www.gigmasters.com/404/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/GigMasters-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Qype</h1>
    <p>Qype have created another rather practical use of their 404 page by allowing you to return home or search all the categories the site has. They also offer answers to questions you may have as well. In addition to the practical use, they did add a bit of flair by creating a very beautiful, high quality illustration that refers to their brand’s use. </p>
    <p><a href="http://www.qype.co.uk/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/QYPE-404-Page-Not-Found-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Klapp</h1>
    <p>Klapp has created a very interesting use for their 404 page. They’ve created an entire game you can play while you determine what you want to do next. It’s a very fun game. It’s actually very addictive. But when the game is over, the game is over and you’re forced to get back on track. Or try to get lost again. </p>
    <p><a href="http://www.qype.co.uk/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/404-Klapp-Media-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Audiko</h1>
    <p>Again, this brand has decided they want to couple the most obvious use of returning the viewer to the correct page with creating an amazing illustration for you to view. The difference here is Audiko has created such a focus with this illustration that all you want to do is marvel at it and find your way back later. </p>
    <p><a href="http://audiko.net/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/Free-Ringtones-for-iPhone-Mobile-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>The Movie Nerd</h1>
    <p>The Movie Nerd has used a clever little iteration of their logo to characterize their 404 page. That’s extremely smart and consistent branding. Because of the very visible navigational bar up top, they didn’t see the need to make sure the viewer needed to be redirected.  </p>
    <p><a href="http://www.themovienerd.com/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/Page-Not-Found-The-Movie-Nerd-The-Movie-Nerd-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Inriality</h1>
    <p>Here’s another use of illustrations in 404 pages. While I’m unsure of what it says (due to the language barrier), I can assume it says something to the effect of ‘Click here to return to Inriality.’ Obviously, when you click the picture of the illustration, you’re redirected to the homepage. </p>
    <p><a href="http://www.inriality.fr/404/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/Inriality-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Davidwashere</h1>
    <p>What I like about this 404 page is it’s simplicity. Not only that, but while it’s straightforward, the brand has decided to let a bit of their personality come out with some of the instructions. It’s a very easy way to approach the 404 page.</p>
    <p><a href="http://davidsbeenhere.com/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/Davidsbeenhere.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Illucolor</h1>
    <p>This is another very clever graphic. It seems as if your Internet is broken and you need to get it fixed. Again, I’ll have to assume the graphic says to click somewhere to refer to the home page, but again it’s another attempt at a semi-practical, yet highly visual 404 page. </p>
    <p><a href="http://www.illucolor.fr/illucolor404.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/404-Not-Found-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>I love Icons</h1>
    <p>This 404 page doesn’t have much to do with anything. In fact, if you stumbled upon this page you’d probably be extremely lost. However, that does not change the fact that in it’s simplicity, this is just a beautiful image. And the faint “404″ is a nice touch.  </p>
    <p><a href="http://iloveicons.ru/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/%D0%A1%D1%82%D1%80%D0%B0%D0%BD%D0%B8%D1%86%D0%B0-%D0%BD%D0%B5-%D0%BD%D0%B0%D0%B9%D0%B4%D0%B5%D0%BD%D0%B0-%D0%AF-%D0%BB%D1%8E%D0%B1%D0%BB%D1%8E-%D0%B8%D0%BA%D0%BE%D0%BD%D0%BA%D0%B8-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Bellstrike</h1>
    <p>Another simply beautiful 404 page. The illustration is exceptionally consistent with the visual image throughout the web site. This 404 page lets you know you’ve stumbled upon the wrong page, but you’re still on the right site, which is extremely important.</p>
    <p><a href="http://bellstrike.com/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/bellstrike-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Molome</h1>
    <p>Well, this 404 page is just plain cute. Molome obviously wanted a chance to show their graphic skills and weren’t too worried about directing the viewer back home. That’s fine though, because again, the navigation is very visible. The 404 page is an extension of the brand. </p>
    <p><a href="http://molo.me/404" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/MOLOME-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>The Many Faces Of…</h1>
    <p> We sometimes like to crowd the Internet with parody sites and sites used to poke fun at (or honor) certain people. The Many Faces of Leonardo DiCaprio seems to do one of those, creating little meme faces from Leo himself. for the 404 page, why not keep it the same? This is a very fun approach to 404 pages.</p>
    <p><a href="http://themanyfacesof.com/four-oh-four/leo.html" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/The-Many-Faces-Of%E2%80%A6-Page-not-found-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Focus Lab</h1>
    <p>Focus Lab’s approach to the 404 page is pretty simple and straight-forward as well. I like this one because, again, you get to see the 404 copy in the brands voice. However, this time, instead of directing the viewer to the homepage, Focus Lab directs the viewer to some of the most important pages in the web site.</p>
    <p><a href="http://focuslabllc.com/say-what" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/We-see-youve-lost-your-way-Focus-Lab-LLC-Branding-ExpressionEngine-Experts-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Mic Check 404</h1>
    <p>While this is just a concept, this is indeed a very clever concept. I mean, what else do you do when you’re trying to make sure something’s right? You test it! </p>
    <p><a href="http://dribbble.com/shots/729002-404/attachments/69396" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/miccheck404.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Kiss.com</h1>
    <p>Another concept, Kiss.com takes a completely different approach to the content on the 404 page. Instead of directing people to the homepage or other pages, we’re doing something different here. They ask you to submit a support ticket so they can fix the problem, which makes sense. Because after all, it is an error page, right?</p>
    <p><a href="http://dribbble.com/shots/962726-Page-Does-not-Exist/attachments/110068" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/404_kisscom.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Dribbble 404</h1>
    <p>This is another concept a designer on Dribbble created. They became so close to the brand, they developed a 404 page for them. Now, this is just extremely clever because of the branding of Dribbble as well as the copy on the page. Dribbble should see this and implement it. Immediately! </p>
    <p><a href="http://dannypostma.com/dribbble/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/dribbbl404concept-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Conclusion</h1>
    <p>404 pages don’t have to be these bland pages controlled by the web and different browsers. You can take control of yours today. You may want to go simple or you may decide to be completely extravagant in your approach. But remember the 404 page should always be a solid representation of you and your work. </p>
    <p><em><strong>Have you worked on a 404 page design lately? Have any favorites? 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/vectorain-4400-vectors.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Vector Mania! 4400 vectors – only $49!</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" style="max-width: 100%; height: auto;"><br>
          </a>
        </td>
    </tr>
    </tbody>
    </table>
    <p><br> </p>
    <a href="http://www.webdesignerdepot.com/2013/05/15-really-creative-404-pages/" rel="nofollow external" class="bo">Source</a>
    </div>
]]>
</Body>
<Summary>We’ve talked about ‘Contact’ pages. We’ve talked about the ‘About’ page. You know what to put on these pages because, hopefully, you’ve thought long and hard about it. And you know exactly what to...</Summary>
<Website>http://www.webdesignerdepot.com/2013/05/15-really-creative-404-pages/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28972/guest@my.umbc.edu/42acf01b2754c963135e59246a8b542b/api/pixel</TrackingUrl>
<Tag>404-pages</Tag>
<Tag>art</Tag>
<Tag>audiko</Tag>
<Tag>bellstrike</Tag>
<Tag>css</Tag>
<Tag>davidwashere</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>dribbble-404</Tag>
<Tag>focus-lab</Tag>
<Tag>gig-masters</Tag>
<Tag>good-404-pages</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>i-love-icons</Tag>
<Tag>illucolor</Tag>
<Tag>illustrator</Tag>
<Tag>information-architecture</Tag>
<Tag>inriality</Tag>
<Tag>inspiration</Tag>
<Tag>javascript</Tag>
<Tag>kiss-com</Tag>
<Tag>klapp</Tag>
<Tag>mic-check</Tag>
<Tag>molome</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>qype</Tag>
<Tag>sql</Tag>
<Tag>the-many-faces-of</Tag>
<Tag>the-movie-nerd</Tag>
<Tag>web-design</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>Thu, 02 May 2013 05:15:19 -0400</PostedAt>
<EditAt>Thu, 02 May 2013 05:15:19 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="28583" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28583">
<Title>Clark Makes Major League Debut for Orioles, Becomes Third Retriever to Pitch in Big Leagues</Title>
<Body>
<![CDATA[
    <div class="html-content">SEATTLE � UMBC baseball alum Zach Clark made his major league debut for the Baltimore Orioles Wednesday night, pitching 1.2 innings against the Seattle Mariners at Safeco Field.</div>
]]>
</Body>
<Summary>SEATTLE � UMBC baseball alum Zach Clark made his major league debut for the Baltimore Orioles Wednesday night, pitching 1.2 innings against the Seattle Mariners at Safeco Field.</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=7971</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28583/guest@my.umbc.edu/a983624925606f92d4eb1f029c878834/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 02 May 2013 01:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="28633" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28633">
<Title>Fahey, Bilney, Semones Help UMBC Women's Lacrosse Garner Four Post Season Awards</Title>
<Body>
<![CDATA[
    <div class="html-content">A trio of UMBC women's lacrosse players earned America East post season awards, led by a pair of honors for senior defender Jamie Fahey (Baldwin, Md./Loch Raven), who received conference recognition for the fourth-straight season, as decided in a vote by the league's seven head coaches.</div>
]]>
</Body>
<Summary>A trio of UMBC women's lacrosse players earned America East post season awards, led by a pair of honors for senior defender Jamie Fahey (Baldwin, Md./Loch Raven), who received conference...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=7973</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28633/guest@my.umbc.edu/c10996adad075b9099603b3c94835deb/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 02 May 2013 01:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="28632" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28632">
<Title>Men's Lacrosse Rallies From Four Down Late; Defeats Hartford, 15-13, to Advance to America East Title Game</Title>
<Body>
<![CDATA[
    <div class="html-content">Stony Brook, N.Y.- Senior Joe Lustgarten (Wading River, N.Y./Shoreham-Wading River) capped a furious UMBC rally with the game-winning score with 55 seconds remaining and added an insurance marker 21 seconds later as No. 3 UMBC defeated No. 2 Hartford, 15-13, in the America East Conference semifinals at Stony Brook's LaValle Stadium. The Retrievers (7-7) advance to their first championship game since 2009, where they will meet No. 1 Albany, a 17-15 winner over No. 4 Stony Brook.</div>
]]>
</Body>
<Summary>Stony Brook, N.Y.- Senior Joe Lustgarten (Wading River, N.Y./Shoreham-Wading River) capped a furious UMBC rally with the game-winning score with 55 seconds remaining and added an insurance marker...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=7972</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28632/guest@my.umbc.edu/fc0a36d46cbd6669b6202e399dc739f4/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 02 May 2013 01:00:00 -0400</PostedAt>
<EditAt>Thu, 02 May 2013 01:00:00 -0400</EditAt>
</NewsItem>

</News>
