<?xml version="1.0"?>
<News hasArchived="true" page="8525" pageCount="10809" pageSize="10" timestamp="Mon, 14 Sep 2026 00:07:24 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=recent&amp;page=8525">
<NewsItem contentIssues="true" id="33723" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33723">
<Title>Creating a 3D Cube Image Gallery</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em>The following is a guest post by Kushagra Gour (<a href="https://twitter.com/chinchang457" rel="nofollow external" class="bo">@chinchang457</a>). Kushagra wrote to me to show me a fun interactive demo he made. It touches on many of the concepts of 3D transforms in CSS, a topic we haven't covered a ton here. So here's Kushagra taking the reins to explain these concepts through a demo.</em></p>
    <p></p>
    <p>I recently redesigned <a href="http://kushagragour.in/" rel="nofollow external" class="bo">my website</a> and came up with a 2-face 3D cube idea for the homepage and header. On hovering it rotates between my display pic and Twitter link. While doing so I thought why not extend the idea into a full 6-face cube which could be used as an image gallery. Here is what I came up with!</p>
    <p>See the Pen <a href="http://codepen.io/chinchang/pen/lLzyB" rel="nofollow external" class="bo">3D cube image gallery</a> by Kushagra Gour (<a href="http://codepen.io/chinchang" rel="nofollow external" class="bo">@chinchang</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a></p>
    <p>This tutorial outlines how you can make something like this, emphasizing the CSS3 3D concepts.</p>
    <h3>Breaking the cube</h3>
    <p>It is quite evident by seeing the cube that the 6 faces of the cube would be 6 different HTML elements. Six <code>&lt;div&gt;</code> elements in this case. Because they need to be rotated as one cube, they need to be in a container element. If we code this basic structure, we would have something like this:</p>
    <pre><code>&lt;div class="cube"&gt;&#x000A;        &lt;div class="cube-face"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face"&gt;&lt;/div&gt;&#x000A;     &lt;/div&gt;</code></pre>
    <p>Also since we will need to reference each sides to style them, we should add appropriate classes to them.</p>
    <pre><code>&lt;div class="cube"&gt;&#x000A;        &lt;div class="cube-face  cube-face-front"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-back"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-left"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-right"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-top"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-bottom"&gt;&lt;/div&gt;&#x000A;     &lt;/div&gt;</code></pre>
    <h3>Styling the faces</h3>
    <p>We don't see anything yet. So lets give some dimension and style to the faces.</p>
    <pre><code>$size: 150px; // cube length&#x000A;    .cube {&#x000A;      width: $size;&#x000A;      height: $size;&#x000A;      position: relative;&#x000A;    }&#x000A;    .cube-face {&#x000A;      width: inherit;&#x000A;      height: inherit;&#x000A;      position: absolute;&#x000A;      background: red;&#x000A;      opacity: 0.5;&#x000A;    }</code></pre>
    <p>See the Pen <a href="http://codepen.io/chinchang/pen/nrmKC" rel="nofollow external" class="bo">3d cube gallery tutorial - P1</a> by Kushagra Gour (<a href="http://codepen.io/chinchang" rel="nofollow external" class="bo">@chinchang</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a></p>
    <p>Note that every cube face has <code>position</code> set to <code>absolute</code> so they stack upon each other at one place. Now we can select each and position accordingly.</p>
    <p>Also I have given opacity to each face so we can see through them and see what's happening.</p>
    <h3>CSS3 3D concepts</h3>
    <p>Lets get to know some concepts of CSS3 3D. To bring the front face a little closer to the eyes, we translate it on the Z-axis:</p>
    <pre><code>.cube-face-front {&#x000A;      color: blue;&#x000A;      transform: translate3d(0, 0, 20px);&#x000A;    }</code></pre>
    <p>You won't see any difference yet. Lets understand why.</p>
    <h4>perspective</h4>
    <p>As mentioned on <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/perspective" rel="nofollow external" class="bo">MDN</a>:</p>
    <blockquote><p>The perspective CSS property determines the distance between the z=0 plane and the user in order to give to the 3D-positioned element some perspective.</p></blockquote>
    <p>In simple terms, its value determines the amount of 3D-ness in the space. The lesser the value of this property, more profound the 3D effect is. Without this property, the elements are rendered on the screen using <a href="http://en.wikipedia.org/wiki/Parallel_projection" rel="nofollow external" class="bo">Parallel projection</a> in which the projection lines are parallel to each other. Therefore no matter how much closer an element move towards/away from you, it will still appear to be of the same size unlike in real world. (<a href="http://css-tricks.com/almanac/properties/p/perspective/" rel="nofollow external" class="bo">More information on perspective</a>).</p>
    <p>We'll set this property on the parent container of our cube so that all its children (faces) are affected by a common perspective, like so:</p>
    <pre><code>.cube {&#x000A;      width: $size;&#x000A;      height: $size;&#x000A;      position: relative;&#x000A;      &#x000A;      perspective: 600px;&#x000A;    }</code></pre>
    <p>As expected, now the front face does appear bigger in size. But still something is missing.</p>
    <h4>transform-style</h4>
    <p>Even after we give perspective to our scene, we still have an issue. The front face should ideally appear above all other faces, hiding them behind it. But it's not.</p>
    <p>The reason is that our cube container has no <a href="http://dev.w3.org/csswg/css-transforms/#d-rendering-context" rel="nofollow external" class="bo">3D rendering context</a> which is defined as follows on CSSWG:</p>
    <blockquote><p>A containing block hierarchy of one or more levels, instantiated by elements with a computed value for the ‘transform-style’ property of ‘preserve-3d’, whose elements share a common three-dimensional coordinate system.</p></blockquote>
    <p>Without an element having the <code>transform-style</code> property set as <code>preserve-3d</code>, its children are rendered as flattened, having no stacking context. Thus even when we bought the front face closer on Z-axis, it continued to render it at its original z-index with no consideration to its position in the 3D space.</p>
    <p>Try to give the <code>.cube</code> element this property and see what happens.</p>
    <pre><code>.cube {&#x000A;      width: $size;&#x000A;      height: $size;&#x000A;      position: relative;&#x000A;      &#x000A;      perspective: 600px;&#x000A;      transform-style: preserve-3d;&#x000A;    }</code></pre>
    <p>It worked. Now that we have our 3D system setup, let transform this into a cube!</p>
    <h3>Positioning the faces</h3>
    <p>We'll take one face at a time and place it at its appropriate position. First let's understand the coordinate system in CSS. If we were to take one of our cube face, it is something like this:</p>
    
        <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/08/tut1.png" alt="" style="max-width: 100%; height: auto;">
    Front face lying flat with Z-axis coming towards us
    
    <p>As you can see, the Z-axis is coming out of the screen straight from the element. Hence, when we translate the front face positively on the Z-axis, it appears closer to us. A point to note here is that this coordinate system is local to this element. Let's look at that more closely.</p>
    <p>We'll use our front face again and rotate it a bit about its Y-axis.</p>
    <pre><code>.cube-face-front {&#x000A;      transform: rotateY(40deg);&#x000A;    }</code></pre>
    <p>Now this is how our front face looks like after the rotation:</p>
    
        <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/08/tut2.png" alt="" style="max-width: 100%; height: auto;">
    Axes rotate with the face.
    
    <p>Note how the axes rotated along with element. This means that Z-axis is no longer coming straight towards us. Instead it is in the direction of the element. So if were to move it along the Z-axis now, it would move in the direction in which the element is facing.</p>
    <p>This is the concept we'll be using to position every face of our cube. Assume that the center of the cube is in the 2D place of the screen. The cube faces then need to be positioned around it in the 3D space. Remember, <strong>We rotate the face so that it faces the required direction then translate on Z-axis</strong>.</p>
    <h4>Front face</h4>
    <p>Nothing to rotate here. Simple move the front face forward by half the cube's length.</p>
    <pre><code>.cube-face-front {&#x000A;      transform: translate3d(0, 0, $size/2);&#x000A;    }</code></pre>
    <h4>Back face</h4>
    <p>The back face will face in the opposite direction to the front one. Which means it needs to be rotated by <code>180 degrees</code> about the Y-axis before translating like so:</p>
    <pre><code>.cube-face-back {&#x000A;      transform: rotateY(180deg) translate3d(0, 0, $size/2);&#x000A;    }</code></pre>
    <p>2 sides done. 4 more to go.</p>
    <h4>Left face</h4>
    <p>In case you still have doubt how the transformation are being done, lets understand this face through some visuals.</p>
    <p>This is how the left face is right now, lying flat in the 2D plane (z=0):</p>
    
        <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/08/tut3.png" style="max-width: 100%; height: auto;">
    Left face: in the 2d plane
    
    <p>As the left side needs to face towards the left, we give it a rotation of <code>90 degrees</code>:</p>
    
        <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/08/tut4.png" style="max-width: 100%; height: auto;">
    Left face: after rotation
    
    <p>And as with every face, we move it on its Z-axis:</p>
    
        <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/08/tut5.png" style="max-width: 100%; height: auto;">
    Left face: after translation
    
    <p>This is final CSS for left face:</p>
    <pre><code>.cube-face-left {&#x000A;      transform: rotateY(-90deg) translate3d(0, 0, $size/2);&#x000A;    }</code></pre>
    <h4>Right face</h4>
    <p>This is similar to the left face, except for a positive rotation:</p>
    <pre><code>.cube-face-right {&#x000A;      transform: rotateY(90deg) translate3d(0, 0, $size/2);&#x000A;    }</code></pre>
    <h4>Top face</h4>
    <p>This face needs to be rotated about the X-axis by <code>90 degrees</code> so that it faces upwards:</p>
    <pre><code>.cube-face-top {&#x000A;      transform: rotateX(90deg) translate3d(0, 0, $size/2);&#x000A;    }</code></pre>
    <h4>Bottom face</h4>
    <p>Similarly, by giving a negative rotation we position the bottom face:</p>
    <pre><code>.cube-face-bottom {&#x000A;      transform: rotateX(-90deg) translate3d(0, 0, $size/2);&#x000A;    }</code></pre>
    <p>This completes the positioning of the faces and now we have our cube complete with the following final CSS (I have also added random colors to each face to differentiate them):</p>
    <pre><code>$size: 150px; // cube length&#x000A;    .cube {&#x000A;      margin: 100px;&#x000A;      width: $size;&#x000A;      height: $size;&#x000A;      position: relative;&#x000A;      &#x000A;      perspective: 600px;&#x000A;      transform-style: preserve-3d;&#x000A;    }&#x000A;    .cube-face {&#x000A;      width: inherit;&#x000A;      height: inherit;&#x000A;      position: absolute;&#x000A;      background: red;&#x000A;      opacity: 0.8;&#x000A;    }&#x000A;    .cube-face-front {&#x000A;      background: yellow;&#x000A;      transform: translate3d(0, 0, $size/2);&#x000A;    } &#x000A;    .cube-face-back {&#x000A;      background: orange;&#x000A;      transform: rotateY(180deg) translate3d(0, 0, $size/2);&#x000A;    } &#x000A;    .cube-face-left {&#x000A;      background: green;&#x000A;      transform: rotateY(-90deg) translate3d(0, 0, $size/2);&#x000A;    } &#x000A;    .cube-face-right {&#x000A;      background: magenta;&#x000A;      transform: rotateY(90deg) translate3d(0, 0, $size/2);&#x000A;    } &#x000A;    .cube-face-top {&#x000A;      background: blue;&#x000A;      transform: rotateX(90deg) translate3d(0, 0, $size/2);&#x000A;    } &#x000A;    .cube-face-bottom {&#x000A;      background: red;&#x000A;      transform: rotateX(-90deg) translate3d(0, 0, $size/2);&#x000A;    }</code></pre>
    <p>Now to rotate the cube we can simply apply rotations on the <code>.cube</code> element. Try giving it a rotation of <code>180 degrees</code> around Y-axis (vertically):</p>
    <pre><code>.cube {&#x000A;      margin: 100px;&#x000A;      width: $size;&#x000A;      height: $size;&#x000A;      position: relative;&#x000A;      &#x000A;      perspective: 600px;&#x000A;      transform-style: preserve-3d;&#x000A;      transform: rotateY(180deg);&#x000A;    }</code></pre>
    <p>You should have something like:</p>
    <p>See the Pen <a href="http://codepen.io/chinchang/pen/CtFDr" rel="nofollow external" class="bo">3d cube gallery tutorial - P2</a> by Kushagra Gour (<a href="http://codepen.io/chinchang" rel="nofollow external" class="bo">@chinchang</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a></p>
    <p>Do you notice something wrong? We turned the cube <code>180 degrees</code> around its vertical axis. We should have seen the back face instead of the front face now. We do see it, but it is showing smaller for some reason. What did we do wrong?</p>
    <h3>Fixing the perspective</h3>
    <p>If you remember, we gave the perspective property to the cube container (<code>.cube</code>). And when we rotated that element just now, the perspective marked by the vanishing point also rotated along with it. So the vanishing point which was initially somewhere behind the 2D place came in front of the 2D plane after the rotation, causing the issue.</p>
    <p>What we ideally want is that the perspective never changes and remains constant no matter what element we transform.</p>
    <p>How do we fix this? We wrap all our elements with another <code>DIV</code> to which give the <code>perspective</code> property:</p>
    <pre><code>&lt;div class="scene"&gt;&#x000A;      &lt;div class="cube"&gt;&#x000A;        &lt;div class="cube-face  cube-face-front"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-back"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-left"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-right"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-top"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-bottom"&gt;&lt;/div&gt;&#x000A;      &lt;/div&gt;&#x000A;    &lt;/div&gt;</code></pre>
    <pre><code>.scene {&#x000A;      margin: 100px;&#x000A;      width: $size;&#x000A;      height: $size;&#x000A;      &#x000A;      perspective: 600px;&#x000A;    }&#x000A;    .cube {&#x000A;      position: relative;&#x000A;      width: inherit;&#x000A;      height: inherit;&#x000A;      &#x000A;      transform-style: preserve-3d;&#x000A;      transform: rotateY(180deg);&#x000A;    }</code></pre>
    <p>Check the result now and everything should appear as expected.</p>
    <p>Try giving it different rotations like <code>transform: rotateX(30deg) rotateY(30deg)</code> to play with it little. Once done, remove the <code>transform</code> property.</p>
    <h3>Adding interactivity</h3>
    <p>We now add some controls to navigate through the gallery. For this we are going to use a nice trick called the <strong>Checkbox Hack</strong>. Though we'll be using radio buttons (as only one will be selected at a time) instead of checkboxes, the concept remains the same. You can read <a href="http://css-tricks.com/the-checkbox-hack/" rel="nofollow external" class="bo">more about the Checkbox Hack</a> in Chris Coyier's article.</p>
    <p>Not going in much depth we add the radio buttons to our HTML:</p>
    <pre><code>&lt;!-- CONTROLS --&gt;      &#x000A;    &lt;input type="radio" checked id="radio-front" name="select-face"/&gt;    &#x000A;    &lt;input type="radio" id="radio-back" name="select-face"/&gt;&#x000A;    &lt;input type="radio" id="radio-left" name="select-face"/&gt;&#x000A;    &lt;input type="radio" id="radio-right" name="select-face"/&gt;&#x000A;    &lt;input type="radio" id="radio-top" name="select-face"/&gt;&#x000A;    &lt;input type="radio" id="radio-bottom" name="select-face"/&gt;&#x000A;    &lt;div class="scene"&gt;&#x000A;      &lt;div class="cube"&gt;&#x000A;        &lt;div class="cube-face  cube-face-front"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-back"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-left"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-right"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-top"&gt;&lt;/div&gt;&#x000A;        &lt;div class="cube-face  cube-face-bottom"&gt;&lt;/div&gt;&#x000A;      &lt;/div&gt;&#x000A;    &lt;/div&gt;</code></pre>
    <p>and following CSS to bind the cube's rotation with the radio buttons:</p>
    <pre><code>#radio-back:checked ~ .scene .cube {&#x000A;      transform: rotateY(180deg);&#x000A;    } &#x000A;    #radio-left:checked ~ .scene .cube {&#x000A;      transform: rotateY(90deg);&#x000A;    } &#x000A;    #radio-right:checked ~ .scene .cube {&#x000A;      transform: rotateY(-90deg);&#x000A;    }&#x000A;    #radio-top:checked ~ .scene .cube {&#x000A;      transform: rotateX(-90deg);&#x000A;    }  &#x000A;    #radio-bottom:checked ~ .scene .cube {&#x000A;      transform: rotateX(90deg);&#x000A;    }</code></pre>
    <p>In the above CSS we simply state when each radio button is checked, what should be the rotation of the cube at that time.</p>
    <h3>Final Code</h3>
    <p>To make it more pleasing, we add some transition effect to the cube and proper alignment to get the following code:</p>
    <pre><code>&lt;!-- CONTROLS --&gt;&#x000A;    &lt;input type="radio" checked id="radio-front" name="select-face"/&gt;    &#x000A;    &lt;input type="radio" id="radio-left" name="select-face"/&gt;&#x000A;    &lt;input type="radio" id="radio-right" name="select-face"/&gt;&#x000A;    &lt;input type="radio" id="radio-top" name="select-face"/&gt;&#x000A;    &lt;input type="radio" id="radio-bottom" name="select-face"/&gt;&#x000A;    &lt;input type="radio" id="radio-back" name="select-face"/&gt;&#x000A;    &#x000A;    &lt;div&gt;&lt;/div&gt;&lt;!-- separator --&gt;&#x000A;    &#x000A;    &lt;div class="scene"&gt;&#x000A;      &lt;div class="cube"&gt;&#x000A;          &lt;div class="cube-face  cube-face-front"&gt;&lt;/div&gt;&#x000A;          &lt;div class="cube-face  cube-face-back"&gt;&lt;/div&gt;&#x000A;          &lt;div class="cube-face  cube-face-left"&gt;&lt;/div&gt;&#x000A;          &lt;div class="cube-face  cube-face-right"&gt;&lt;/div&gt;&#x000A;          &lt;div class="cube-face  cube-face-top"&gt;&lt;/div&gt;&#x000A;          &lt;div class="cube-face  cube-face-bottom"&gt;&lt;/div&gt;&#x000A;       &lt;/div&gt;&#x000A;    &lt;/div&gt;</code></pre>
    <pre><code>$size: 150px; // cube length&#x000A;    body {&#x000A;      text-align: center;&#x000A;      padding: 50px;&#x000A;    } &#x000A;    .scene {&#x000A;      display: inline-block;&#x000A;      margin-top: 50px;&#x000A;      width: $size;&#x000A;      height: $size;&#x000A;      &#x000A;      perspective: 600px;&#x000A;    }&#x000A;    .cube {&#x000A;      position: relative;&#x000A;      width: inherit;&#x000A;      height: inherit;&#x000A;      &#x000A;      transform-style: preserve-3d;&#x000A;      transition: transform 0.6s;&#x000A;    }&#x000A;    .cube-face {&#x000A;      width: inherit;&#x000A;      height: inherit;&#x000A;      position: absolute;&#x000A;      background: red;&#x000A;      opacity: 0.8;&#x000A;    }&#x000A;    // faces&#x000A;    .cube-face-front {&#x000A;      background: yellow;&#x000A;      transform: translate3d(0, 0, $size/2);&#x000A;    }  &#x000A;    .cube-face-back {&#x000A;      background: black;&#x000A;      transform: rotateY(180deg) translate3d(0, 0, $size/2);&#x000A;    } &#x000A;    .cube-face-left {&#x000A;      background: green;&#x000A;      transform: rotateY(-90deg) translate3d(0, 0, $size/2);&#x000A;    } &#x000A;    .cube-face-right {&#x000A;      background: magenta;&#x000A;      transform: rotateY(90deg) translate3d(0, 0, $size/2);&#x000A;    } &#x000A;    .cube-face-top {&#x000A;      background: blue;&#x000A;      transform: rotateX(90deg) translate3d(0, 0, $size/2);&#x000A;    } &#x000A;    .cube-face-bottom {&#x000A;      background: red;&#x000A;      transform: rotateX(-90deg) translate3d(0, 0, $size/2);&#x000A;    }  &#x000A;    // controls &#x000A;    #radio-back:checked ~ .scene .cube {&#x000A;      transform: rotateY(180deg); &#x000A;    } &#x000A;    #radio-left:checked ~ .scene .cube {&#x000A;      transform: rotateY(90deg); &#x000A;    } &#x000A;    #radio-right:checked ~ .scene .cube {&#x000A;      transform: rotateY(-90deg); &#x000A;    }&#x000A;    #radio-top:checked ~ .scene .cube {&#x000A;      transform: rotateX(-90deg); &#x000A;    }  &#x000A;    #radio-bottom:checked ~ .scene .cube {&#x000A;      transform: rotateX(90deg); &#x000A;    }</code></pre>
    <p>Adding some <code>background-image</code> to all the faces we get the final result:</p>
    <p>See the Pen <a href="http://codepen.io/chinchang/pen/lLzyB" rel="nofollow external" class="bo">3D cube image gallery</a> by Kushagra Gour (<a href="http://codepen.io/chinchang" rel="nofollow external" class="bo">@chinchang</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a></p>
    <p>Hope you enjoyed this 3D ride and create some really amazing things using it!</p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/creating-a-3d-cube-image-gallery/" rel="nofollow external" class="bo">Creating a 3D Cube Image Gallery</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>The following is a guest post by Kushagra Gour (@chinchang457). Kushagra wrote to me to show me a fun interactive demo he made. It touches on many of the concepts of 3D transforms in CSS, a topic...</Summary>
<Website>http://css-tricks.com/creating-a-3d-cube-image-gallery/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33723/guest@my.umbc.edu/bed9381c9062ae0880b400df4c5827ba/api/pixel</TrackingUrl>
<Tag>article</Tag>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tricks</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 06 Aug 2013 09:30:42 -0400</PostedAt>
<EditAt>Tue, 06 Aug 2013 09:30:42 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33718" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33718">
<Title>DealBook Column: Newspapers Are Billionaires&#8217; Latest Trophies</Title>
<Body>
<![CDATA[
    <div class="html-content">Deals to buy The Washington Post and The Boston Globe have been announced this week by very wealthy entrepreneurs.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fbillionaires-latest-trophies-are-newspapers%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook+Column%3A+Newspapers+Are+Billionaires%E2%80%99+Latest+Trophies" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fbillionaires-latest-trophies-are-newspapers%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook+Column%3A+Newspapers+Are+Billionaires%E2%80%99+Latest+Trophies" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fbillionaires-latest-trophies-are-newspapers%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook+Column%3A+Newspapers+Are+Billionaires%E2%80%99+Latest+Trophies" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fbillionaires-latest-trophies-are-newspapers%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook+Column%3A+Newspapers+Are+Billionaires%E2%80%99+Latest+Trophies" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fbillionaires-latest-trophies-are-newspapers%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook+Column%3A+Newspapers+Are+Billionaires%E2%80%99+Latest+Trophies" 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/172487781514/u/0/f/640387/c/34625/s/2f9ee9c3/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487781514/u/0/f/640387/c/34625/s/2f9ee9c3/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Deals to buy The Washington Post and The Boston Globe have been announced this week by very wealthy entrepreneurs.     </Summary>
<Website>http://dealbook.nytimes.com/2013/08/05/billionaires-latest-trophies-are-newspapers/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33718/guest@my.umbc.edu/a73afa38fe9c30e764e8f615c6e764f9/api/pixel</TrackingUrl>
<Tag>dealbook-column</Tag>
<Tag>media</Tag>
<Tag>mergers-and-acquisitions</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>top-headline-1</Tag>
<Tag>washington-post</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>Tue, 06 Aug 2013 07:43:08 -0400</PostedAt>
<EditAt>Tue, 06 Aug 2013 10:56:55 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33715" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33715">
<Title>DealBook: The Changing State of Smartphone Competition in China</Title>
<Body>
<![CDATA[
    <div class="html-content">A look at the competition from Chinese makers to Apple’s iPhone, which is no longer the most sought after phone in the country, and the state of the government’s effort to stabilize economic growth.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fchanging-state-of-smartphone-competition-in-china%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+The+Changing+State+of+Smartphone+Competition+in+China" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fchanging-state-of-smartphone-competition-in-china%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+The+Changing+State+of+Smartphone+Competition+in+China" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fchanging-state-of-smartphone-competition-in-china%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+The+Changing+State+of+Smartphone+Competition+in+China" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fchanging-state-of-smartphone-competition-in-china%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+The+Changing+State+of+Smartphone+Competition+in+China" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fchanging-state-of-smartphone-competition-in-china%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+The+Changing+State+of+Smartphone+Competition+in+China" 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>A look at the competition from Chinese makers to Apple’s iPhone, which is no longer the most sought after phone in the country, and the state of the government’s effort to stabilize economic...</Summary>
<Website>http://dealbook.nytimes.com/2013/08/05/changing-state-of-smartphone-competition-in-china/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33715/guest@my.umbc.edu/07ec5d48868a97ccc4499635ff98c046/api/pixel</TrackingUrl>
<Tag>android-operating-system</Tag>
<Tag>apple-inc</Tag>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>banking-and-financial-institutions</Tag>
<Tag>china</Tag>
<Tag>china-insider</Tag>
<Tag>china-mobile-ltd</Tag>
<Tag>china-mobile-ltd-chl-nyse</Tag>
<Tag>economic-conditions-and-trends</Tag>
<Tag>google-inc</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>new</Tag>
<Tag>peoples-bank-of-china</Tag>
<Tag>smartphones</Tag>
<Tag>technology</Tag>
<Tag>xiaomi-tech</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>Tue, 06 Aug 2013 07:10:43 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33716" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33716">
<Title>DealBook: Sony Rejects Loeb Proposal for Splitting Off Entertainment Unit</Title>
<Body>
<![CDATA[
    <div class="html-content">The company plans to hold onto all of its vast entertainment arm, rejecting a proposal by one of its biggest investors, the activist hedge fund manager Daniel S. Loeb.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fsony-rejects-loeb-proposal-for-splitting-off-entertainment-unit%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Sony+Rejects+Loeb+Proposal+for+Splitting+Off+Entertainment+Unit" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fsony-rejects-loeb-proposal-for-splitting-off-entertainment-unit%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Sony+Rejects+Loeb+Proposal+for+Splitting+Off+Entertainment+Unit" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fsony-rejects-loeb-proposal-for-splitting-off-entertainment-unit%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Sony+Rejects+Loeb+Proposal+for+Splitting+Off+Entertainment+Unit" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fsony-rejects-loeb-proposal-for-splitting-off-entertainment-unit%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Sony+Rejects+Loeb+Proposal+for+Splitting+Off+Entertainment+Unit" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F05%2Fsony-rejects-loeb-proposal-for-splitting-off-entertainment-unit%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Sony+Rejects+Loeb+Proposal+for+Splitting+Off+Entertainment+Unit" 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/172487781515/u/0/f/640387/c/34625/s/2f9eaece/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487781515/u/0/f/640387/c/34625/s/2f9eaece/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The company plans to hold onto all of its vast entertainment arm, rejecting a proposal by one of its biggest investors, the activist hedge fund manager Daniel S. Loeb.     </Summary>
<Website>http://dealbook.nytimes.com/2013/08/05/sony-rejects-loeb-proposal-for-splitting-off-entertainment-unit/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33716/guest@my.umbc.edu/5a9e287cd61a17276be9bbc1564734f8/api/pixel</TrackingUrl>
<Tag>electronics</Tag>
<Tag>hedge-funds</Tag>
<Tag>hirai-kazuo</Tag>
<Tag>japan</Tag>
<Tag>loeb-daniel-s</Tag>
<Tag>manhattan-nyc</Tag>
<Tag>media</Tag>
<Tag>midtown-area-manhattan-ny</Tag>
<Tag>new</Tag>
<Tag>news-corporation</Tag>
<Tag>news-corporation-nwsa-nasdaq</Tag>
<Tag>sony-corporation</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>Tue, 06 Aug 2013 06:44:01 -0400</PostedAt>
<EditAt>Tue, 06 Aug 2013 07:50:40 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33714" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33714">
<Title>Augmented reality bites</Title>
<Body>
<![CDATA[
    <div class="html-content">Augmented reality has had its fair share of false dawns over the years. Suspend your disbelief, says Fabrizio Polo – things are getting exciting<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Fopinions%2Faugmented-reality-bites&amp;t=Augmented+reality+bites" 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%2Faugmented-reality-bites&amp;t=Augmented+reality+bites" 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%2Faugmented-reality-bites&amp;t=Augmented+reality+bites" 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%2Faugmented-reality-bites&amp;t=Augmented+reality+bites" 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%2Faugmented-reality-bites&amp;t=Augmented+reality+bites" 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/172487748772/u/49/f/502346/c/32632/s/2f9e6d9f/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487748772/u/49/f/502346/c/32632/s/2f9e6d9f/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Augmented reality has had its fair share of false dawns over the years. Suspend your disbelief, says Fabrizio Polo – things are getting exciting      </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/R7l0ZJJWuvE/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33714/guest@my.umbc.edu/b42b450c85151109654ed36a0736e6ac/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>Tue, 06 Aug 2013 05:43:02 -0400</PostedAt>
<EditAt>Tue, 06 Aug 2013 05:43:02 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33710" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33710">
<Title>Free download: 48 flat designer icons</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/08/thumbnail7.jpg" width="200" height="160" style="max-width: 100%; height: auto;">The flat design juggernaut continues to roll on, crushing everything in its path. With an emphasis on simplicity, it’s easy to manage basic design principles when you’re working flat.</p> <p>Essential to any flat design is a consistent set of icons, so we’re delighted to be able to bring you this free set of 48 office, social and travel icons, designed by our friends at <a href="http://www.vecteezy.com/" rel="nofollow external" class="bo">Vecteezy.</a></p> <p>Supplied as .ai and .png files, these fabulous icons in three complimentary styles — full color and monochrome coral — are fully scaleable and add a touch of flat design to any website.</p> <p>Download after the preview…</p> <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/WDD_IconsPreview.jpg" width="650" alt="Free download: 48 flat designer icons" style="max-width: 100%; height: auto;"></p> <p> </p> <p><em><strong>Have you used these icons in a project? What uses can you imagine for them? Let us know in the comments.</strong></em></p> <div>
    <div> <a href="/widget/pay-tweet.php?refID=wdd_flatdesignericons&amp;code=357155ac5a3dd49fb555cccdb82a1c6f&amp;post_id=57165&amp;msg=Free+download%3A+48+flat+designer+icons+http%3A%2F%2Fbit.ly%2F170yh3P" rel="nofollow external" class="bo">Pay with a Tweet</a> </div> <div> <a rel="nofollow external" class="bo">Download now</a> </div> <div> <p>Please enter your email address below and click the download button. The download link will be sent to you by email, or if you have already subscribed, the download will begin immediately.</p>       <div>I agree to receive exclusive deals from <a href="http://www.MightyDeals.com" rel="nofollow external" class="bo"><span>MightyDeals.com</span></a> and monthly/weekly newsletters from <a href="http://www.WebdesignerDepot.com" rel="nofollow external" class="bo"><span>WebdesignerDepot.com</span></a>. Unsubscribe at any time. Your email will not be sold/rented.</div>   <div>         </div>  <div><img src="http://forms.aweber.com/form/displays.htm?id=jJwczBwMnIwMrA==" alt="" style="max-width: 100%; height: auto;"></div>  </div>   </div> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/port-font-family.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Popular Port Font Family – Elegance With Modern Twist – only $24!</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="Free download: 48 flat designer icons" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/08/free-download-48-flat-designer-icons/" rel="nofollow external" class="bo">Source</a> <br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F08%2Ffree-download-48-flat-designer-icons%2F&amp;t=Free+download%3A+48+flat+designer+icons" 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%2F08%2Ffree-download-48-flat-designer-icons%2F&amp;t=Free+download%3A+48+flat+designer+icons" 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%2F08%2Ffree-download-48-flat-designer-icons%2F&amp;t=Free+download%3A+48+flat+designer+icons" 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%2F08%2Ffree-download-48-flat-designer-icons%2F&amp;t=Free+download%3A+48+flat+designer+icons" 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%2F08%2Ffree-download-48-flat-designer-icons%2F&amp;t=Free+download%3A+48+flat+designer+icons" 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/172487775618/u/49/f/661066/c/35285/s/2f9cf57a/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487775618/u/49/f/661066/c/35285/s/2f9cf57a/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The flat design juggernaut continues to roll on, crushing everything in its path. With an emphasis on simplicity, it’s easy to manage basic design principles when you’re working flat.   Essential...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/2f9cf57a/sc/4/l/0L0Swebdesignerdepot0N0C20A130C0A80Cfree0Edownload0E480Eflat0Edesigner0Eicons0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33710/guest@my.umbc.edu/da1152a90654ed3b67966371524ddc13/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>download-free-icons</Tag>
<Tag>flat-design</Tag>
<Tag>free-flat-icons</Tag>
<Tag>free-icons</Tag>
<Tag>freebies</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 06 Aug 2013 05:15:51 -0400</PostedAt>
<EditAt>Tue, 06 Aug 2013 05:15:51 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33709" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33709">
<Title>A Journey Through Beautiful Typography In Web Design</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>First impressions are lasting impressions. Whether you realize it or not, your typography helps to create an experience for users before they’ve even read a word or clicked a button. Typography has the potential to go <strong>beyond merely telling a story</strong> — it shows the user who is behind the website and what you’re about. The treatment of type creates an atmosphere and elicits a response much the same way as tone of voice does.</p>
    <p>You need to ask yourself, what do you want to say and how do you want to say it? Consider the user: What do you want them to feel and experience when the page loads? Typography establishes a mode of communication and, in turn, the personality of the website. The choice of typeface will determine how people respond to your website.</p>
    <p>The following websites have very distinct personalities, largely established by the typography. Granted, sometimes they aren’t perfect (unfortunately, performance is often an issue), but they use type to engage the user and generate interest. Good Web typography isn’t just about a beautiful visual treatment, but about speed as well; many designers neglect performance entirely. Please keep in mind that these websites haven’t been tested in old browsers or on mobile devices — that wasn’t the point of this article. Instead, we’ll look closely at interesting treatments and innovative uses of type.</p>
    <h3>Exquisite Uses Of Type</h3>
    <p><a href="http://mattluckhurst.com/" rel="nofollow external" class="bo">Matt Luckhurst</a><br>
    This page is colorful and fun. You are greeted with lovely serif letters — and after a bit, you realize that the seemingly randomly scattered letters spell Matt’s name. It’s quite effective how hovering reveals a sample image of each project; it almost jumps out of the letter. The website shows how type can be used as graphic elements and incorporated into a design. The multicolored serif typeface breaks away from the classic, maybe even sober, idea we may have of serifs.</p>
    <p><a href="http://mattluckhurst.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Mattluckhurst_tiny.png" alt="Matt Luckhurst" width="600" height="415" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://thisisplayful.com/" rel="nofollow external" class="bo">Playful</a><br>
    Well, this is definitely playful! The tone of the website is set not just by the look of the typeface, but by the way it’s displayed. It breaks the mold of communication. You would usually see axial typography on printed posters, which can be effective. On this website, the font choice isn’t particularly decorative or playful; it’s a rather simple sans serif. A nice touch is the background pattern, which mimics the reading direction and the movement of the user’s head from side to side as they read the text.</p>
    <p><a href="http://thisisplayful.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/This-is-playful_tiny.png" alt="This is Playful" width="600" height="498" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.lawebdelatelier.com/en" rel="nofollow external" class="bo">Atelier</a><br>
    This website is altogether remarkable. The page has such a dynamic feel, created by the different elements on it. The nameplate is in a bold yet elegant typeface, setting the tone for the design. A sense of movement is established by the diagonal lines, which follow the slant of the “A” in the nameplate, setting the rhythm for the website. The movement of the slideshow of teasers grabs your attention, and the images are large without feeling cramped. However, the main <a href="http://www.lawebdelatelier.com/img/static/bg.jpg" rel="nofollow external" class="bo">background image</a> of the website is 2560 × 5350 pixels and 2.4 MB — ouch!</p>
    <p><a href="http://www.lawebdelatelier.com/en" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Atelier_tiny.png" alt="Atelier" width="600" height="456" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.cirq.com/" rel="nofollow external" class="bo">Cirq</a><br>
    Designed to look like an old poster, this website for a vineyard is quite unique and innovative. The design successfully achieves a vintage feel and translates beautifully as a website. I love how the shadow behind “Russian River” moves with your mouse and creates movement on the otherwise static page. The main drawback here is that, for some reason, the text is embedded as images on the website, preventing it from being copied and pasted. Also, surely a similar design could be created at less than 3.4 MB and 43 HTTP requests.</p>
    <p><a href="http://www.cirq.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Cirq_tiny.png" alt="Cirq" width="600" height="401" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.maxdc.co/" rel="nofollow external" class="bo">Max Di Capua</a><br>
    The layout and typography here work together in a modular system, often overlapping one another. This approach to layout is refreshing because it isn’t rigid and has a fluidity to it. The typography has the same feel because it is widely spaced, despite being heavy and dense. Captions and descriptions, in an easy-to-read serif typeface, appear alongside the work.</p>
    <p><a href="http://www.maxdc.co/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Maxi-Di-Capua_tiny.png" alt="Max Di Capua" width="600" height="545" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="https://www.rijksmuseum.nl/en" rel="nofollow external" class="bo">Rijksmuseum</a><br>
    The large letters in a custom typeface span the screen and continue off page, making the Rijksmuseum seem larger than life. The home page then rotates through beautiful photographs of the museum’s contents. The main navigation is also rather interesting; when clicked, it slides down for users to select a subcategory. The total size of the home page is 955 KB with 31 HTTP requests — well optimized.</p>
    <p><a href="https://www.rijksmuseum.nl/en" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Rijks-Museum_tiny.png" alt="Rijks Museum" width="600" height="..." style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://ishothim.com/" rel="nofollow external" class="bo">I Shot Him</a><br>
    This Web design studio greets you with a photographed welcome message, which is refreshing. The user immediately gets a sense of the physical space that these designers work in. There is a rawness to it, an authenticity. The type is the focal point without being loud or overwhelming. I really like how they have moved away from the perfection of the computer and show themselves as being unique. Although the home page isn’t as interactive as you’d expect, the personality of the design studio is established by the photograph, which has depth and texture.</p>
    <p><a href="http://ishothim.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/I-Shot-Him_tiny.png" alt="I Shot Him" width="600" height="331" style="max-width: 100%; height: auto;"></a></p>
    <p>The hand-rendered type personalizes the website and sets up an expectation of the kind of work the studio produces. The type treatment throughout the rest of the website reinforces a relaxed yet creative energy, as the wording is short and to the point. Another interesting aspect is the navigation; it’s hidden on the landing page, but hovering over an icon provides access to it. As you scroll down, the navigation is revealed and remains fixed at the top.</p>
    <p><a href="http://bangersaustin.com/" rel="nofollow external" class="bo">Banger’s</a><br>
    This website has a lot of character. Banger’s is a down-to-earth eatery specializing in beer and sausage. Its story looks like it’s drawn on the brown cardboard box that its food is delivered in. The logo looks like a hand-painted sign, unique and imperfect but all the more beautiful for it. The fixed navigation works well as you scroll down, and the hover effect (turning the words red) is simple yet effective. The type contributes a lot to the visual identity, and the graphics are great — but the performance, not so much. A huge downside is that the home page is 7.2 MB, with 254 HTTP requests. Frankly, that’s unacceptable.</p>
    <p><a href="http://bangersaustin.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Bangers_tiny.png" alt="Bangers" width="600" height="280" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.caavadesign.com/" rel="nofollow external" class="bo">Caava Design</a><br>
    Caava Design has sans-serif typefaces, which maintains a neat, clean aesthetic. The typeface used for “Good design is good business” is large, easy to read and obvious, and the italicized introduction stands out. The typography throughout is used purposefully and is not necessarily loud, and the written content doesn’t detract from the portfolio.</p>
    <p><a href="http://www.caavadesign.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Caava-Design_tiny.png" alt="Caava Design" width="600" height="316" style="max-width: 100%; height: auto;"></a></p>
    <p>However, the small text is perhaps too small to be read comfortably, and the spacing in the justified columns is untidy. The contrast in size also discourages the user from reading the entire website. Again, the visuals don’t justify the size: 5.7 MB and 90 HTTP requests.</p>
    <p><a href="http://www.theblacksparrow.co.nz/" rel="nofollow external" class="bo">The Black Sparrow</a><br>
    The Black Sparrow has a vintage look. The wide variety of typefaces all help to establish an eclectic, rustic feel. The theme for this drinkery and lounge is based on the writings of Charles Bukowski, reflected in the literary elements and old typewriter-style logo. I love the navigation bar and how the icons roll over when you hover them. The website has a definite 1930s feel, and the sparrow illustrations support it. However, with the space available, the font size does seem a bit small to be read easily.</p>
    <p><a href="http://www.theblacksparrow.co.nz/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/The-Black-Sparrow_tiny.png" alt="The Black Sparrow" width="600" height="314" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://gonocturnal.com/" rel="nofollow external" class="bo">Nocturnal</a><br>
    The beautiful slab serif used here is simple, clean, large and easy to read. It is round and widely set, giving the website plenty of breathing room. The simple, neat layout together with the type treatment give a good overall snapshot of the designer’s work. This website works effectively as a design portfolio; while it doesn’t do anything unusual, it focuses heavily on the artist’s work, and sometimes that’s all that is necessary.</p>
    <p><a href="http://gonocturnal.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Nocturnal_tiny.png" alt="Nocturnal" width="600" height="299" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://marieguillaumet.com/" rel="nofollow external" class="bo">Marie Guillaumet</a><br>
    The handwritten typeface works beautifully by personalizing this portfolio and giving a sense that the designer is physically involved in the production process. A sense of individuality and uniqueness is connected to the designer and, in turn, her work. The handwritten type also works well with the hand-drawn icons, adding character to the website. It’s almost as though we are peering into her visual diary, getting a piece of the designer herself, which will appeal to prospective clients.</p>
    <p><a href="http://marieguillaumet.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Marie-Guillaumet_tiny.png" alt="Marie Guillaumet" width="600" height="461" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.vintagehope.co.uk/" rel="nofollow external" class="bo">Vintage Hope</a><br>
    The website’s heading looks like it was painted with a thick paintbrush in big heavy strokes. The typeface is so wonderfully bold and expressive. Together with the beautiful photography that fills the background, it gives the user a sense of the openness and freedom that characterize the organization. Vintage Hope raises money for the less fortunate in Malawi by loaning out vintage china, and the visual identity has an excited, happy and positive look to it. And that’s at 1 MB in size and 40 HTTP requests — impressive.</p>
    <p><a href="http://www.vintagehope.co.uk/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Vintagehope_tiny.png" alt="Vintage Hope" width="600" height="293" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://browserawarenessday.com/#home" rel="nofollow external" class="bo">Browser Awareness Day</a><br>
    As this page loads, the user is called upon to help make the Web “fun,” “fast” and “safe.” The keyword in each slide is set in decorative type. Creativity is evident in the lettering, which grabs attention, enticing the user to scroll down and learn more. The note on the right has a comic book-style typeface, adding to the playfulness of the website. When you scroll down, the same comic-book typeface is used, along with other playful typefaces.</p>
    <p><a href="http://browserawarenessday.com/#home" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Browser-awareness-day_tiny.png" alt="Browser Awareness Day" width="600" height="306" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://robedwards.org/" rel="nofollow external" class="bo">Rob Edwards</a><br>
    The typography here is just beautiful. It’s a design piece in itself and sets up an expectation of the designer’s work. The “Hi there” is large and grabs the user’s attention, and the rest of the decorative circus-style typefaces are engaging and fun. You don’t see this every day, and it works effectively as an introduction. The rest of the website feels a bit out of place, though, especially in its spacing and contrast.</p>
    <p><a href="http://robedwards.org/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Rob-Edwards_tiny.png" alt="Rob Edwards" width="600" height="467" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://82nd-and-fifth.metmuseum.org/" rel="nofollow external" class="bo">82nd &amp; Fifth</a><br>
    This website is all about visuals, and the typeface supports that. The sans serif is beautifully simple and light, and the tinted block backgrounds for the captions are sophisticated. With this website, the typeface isn’t the focal point, but rather supports the strong photographs. The website as a whole is quite dynamic; as you scroll down, more thumbnails are loaded. The website also has a seemingly transparent navigation bar; when it’s hovered over, a black bar folds out to reveal the menu. The whole website is thoughtfully constructed to showcase the art pieces. The downside is its 6.4 MB and 120 HTTP requests.</p>
    <p><a href="http://82nd-and-fifth.metmuseum.org/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/82nd-and-fifth_tiny.png" alt="82nd &amp; Fifth" width="600" height="243" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://ecc.co.nz/" rel="nofollow external" class="bo">ECC Lighting &amp; Furniture</a><br>
    Love it or hate it, Helvetica takes center stage on this website. The category buttons are big and bold and grab the user’s attention. The graphic design here is classic, clean and minimalist. The type in the navigation is vertically oriented in the top-right, creating an interesting effect, while still allowing the user’s focus to remain on the main category navigation. The way the images are not shown until the area is hovered over is intriguing.</p>
    <p><a href="http://ecc.co.nz/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/ecc_tiny.png" alt="ECC Lighting &amp; Furniture" width="600" height="379" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://marianne-brandt-wettbewerb.de/en/home.html" rel="nofollow external" class="bo">Marianne Brandt</a><br>
    What do you expect when you hear the name Marianne Brandt, and how would you translate that into a website? Naturally, a Bauhaus-level focus on functionality is key. This website has a definite Bauhaus feel to it, with its flat colors and Futura font. The overall aesthetic is minimalist and clean but definitely not boring or dull.</p>
    <p><a href="http://marianne-brandt-wettbewerb.de/en/home.html" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Marianne-Brandt_tiny.png" alt="Marianne Brandt" width="600" height="333" style="max-width: 100%; height: auto;"></a></p>
    <p>What grabbed my attention was the “Thanks / Danke” piece, in which the language you’ve set (English or German) determines which word stands out in bold red. It’s such a great idea for websites that support more than one language. The different sections remind me of colored plastic file dividers, a great way to sort through information on a website. The colors, geometry and overall character are consistent with Bauhaus principles.</p>
    <p><a href="http://navasca.com/nate/index.html" rel="nofollow external" class="bo">Nate Navasca</a><br>
    The style and type treatment on this website are perhaps a little more traditional, with a bold sans-serif headline and a serif typeface for the body text. If it ain’t broke, why fix it, right? The designer focuses on functionality and simplicity, and it works well.</p>
    <p><a href="http://navasca.com/nate/index.html" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Navasca_tiny.png" alt="Nate Navasca" width="600" height="375" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://ewket.co.uk/" rel="nofollow external" class="bo">Ewket</a><br>
    The design here is flat and simple. Created with basic shapes, it looks like the first layer of a painting. Ewket deals with basic education matters in Ethiopia, and the use of Andale Mono for the body text is not exactly what you’d expect, but it works for the purpose. The font is a sharp sans serif that has a bare and basic feel. Ewket is a grassroots program, so the very basic and simple design mirrors its function. However, it isn’t really reflected in performance: 4.6 MB and 58 HTTP requests are unnecessarily large.</p>
    <p><a href="http://ewket.co.uk/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Ewket_tiny.png" alt="Ewket" width="600" height="505" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://thedissolve.com/" rel="nofollow external" class="bo">The Dissolve</a><br>
    I love the nameplate and how it creates an old cinema aesthetic. The typeface has that vintage feel and contrasts with the serifs used in the articles. The website has the simple, clean and sophisticated appeal of an old movie. The navigation makes great use of the space; once the identity of the website is established with the nameplate, the teasers for each category appear in its place as you hover over it.</p>
    <p><a href="http://thedissolve.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/The-Dissolve_tiny.png" alt="The Dissolve" width="600" height="453" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.thewhig.org/" rel="nofollow external" class="bo">The Whig</a><br>
    This dive bar is a place to sit back, relax and have a drink with your buddies. The typeface chosen to illustrate this is Medula One. This sans serif isn’t overly decorative but has a medieval look to it, with its brushed strokes. It’s friendly and not pretentious, hinting at the ambience of the bar.</p>
    <p><a href="http://www.thewhig.org/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/The-Whig-1_tiny.png" alt="The Whig" width="600" height="287" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://findandform.com/" rel="nofollow external" class="bo">Find &amp; Form</a><br>
    With a clean, monochromatic aesthetic, this website keeps body text to a minimum. The typography is simple and low-key, allowing the images to speak for themselves. The monospaced font is a bit unusual here; still, it communicates the team’s slogan that “The digital world craves old-school craft.” The aesthetic is contemporary. Also interesting is how navigation moves horizontally as you scroll down the page, making room for the rest of the website.</p>
    <p><a href="http://findandform.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/FindForm_tiny.png" alt="Find&amp;Form" width="600" height="444" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://carreraworld.com/us/" rel="nofollow external" class="bo">Carrera</a><br>
    There is a timelessness to the design of Carrera’s website, just as there is an authenticity and timelessness to its products. Website design should be consistent with product design. This eyeglass company cites one of its objectives as being to strike a “perfect balance between heritage and fashion.” The simple, bold uppercase type achieves this, having a classic feel without being outdated or overused. The typography is bold and prominent, although different enough that it doesn’t compete with the logo. Also worth mentioning are the interesting hover effects throughout the different sections of the website.</p>
    <p><a href="http://carreraworld.com/us/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Carrera_tiny.png" alt="Carrera" width="600" height="379" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.myfelt.de/" rel="nofollow external" class="bo">Myfelt</a><br>
    The typography used here is friendly and warm, congruent with the products, text and illustrations. All of the elements work together to communicate the same message. One of my favorite things about this website is that the dots in the rugs are incorporated into the logo and nameplate.</p>
    <p><a href="http://www.myfelt.de/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/myfelt_tiny.png" alt="Myfelt" width="600" height="438" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.vogue.es/" rel="nofollow external" class="bo">Vogue</a><br>
    The Playfair Display font, by designer Claus Eggers Sørensen, sets a bold yet not brash tone. The elegance of this serif is consistent with Vogue’s brand. According to the designer, the typeface is viewed best at larger sizes.</p>
    <p><a href="http://www.vogue.es/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Vogue_tiny.png" alt="Vogue" width="600" height="438" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.allsaintswine.com.au/" rel="nofollow external" class="bo">All Saints Estate</a><br>
    There are a few ways to achieve class and elegance with type, and this website hits the nail on the head with its blend of serif and lightweight sans serif. Garamond Premier Pro Display has a contemporary yet sophisticated look that is delicate and perfect for body text and appropriate to vineyards and wine.</p>
    <p><a href="http://www.allsaintswine.com.au/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/All-Saints-Estate_tiny.png" alt="Vogue" width="600" height="438" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://evening-edition.com/" rel="nofollow external" class="bo">Evening Edition</a><br>
    The blackletter typeface for this nameplate is consistent with the traditional nameplates of print newspapers. It carries authority and gravitas and separates this news source from tabloids.</p>
    <p><a href="http://evening-edition.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Evening-Edition_type.png" alt="Evening Edition" width="600" height="375" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.served-mcr.com/" rel="nofollow external" class="bo">Served MCR</a><br>
    This fun doodle-inspired website is for a ping-pong competition. The typography is rough and looks hand-drawn; in some areas, the type is animated or set against an animated background. Animated type is unusual in Web design, but here it grabs the user’s attention. The “Register” banner is an instance of this; the text is legible and prominent. This typography is appropriate because there isn’t much text, which keeps the website easy to use. However, the performance of the page is devastating: 7.5 MB with 175 HTTP requests. The main background image is 2032 × 4761 pixels and 2.2 MB — on both desktop and mobile.</p>
    <p><a href="http://www.served-mcr.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Served-MCR_tiny.png" alt="Served MC" width="600" height="346" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://helloenso.com/" rel="nofollow external" class="bo">Enso</a><br>
    Large, bold, full-caps sans-serif type can get in your face, as if it’s shouting. However, Enso uses muted tones to counter the bold typography — although, yellow is a little difficult to read. The layout is original and interesting; the designers want you to notice the type running down the page and to scroll down to read the entire message. This is a clever tactic because the navigation is scattered around the page in bright pink. The logo at the top acts as a home button, rolling out to reveal the whole word when hovered over.</p>
    <p><a href="http://helloenso.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/enso_tiny.png" alt="Enso" width="600" height="398" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://craftingtype.com/" rel="nofollow external" class="bo">Crafting Type</a><br>
    This website is all about type, so the typography has to sell itself. The contrast between the light uppercase type for “Crafting” and the heavy lowercase typeface for “type” creates visual balance in the logo. The body text is large and legible. The serif typeface and simple elegant layout also contribute to the legibility.</p>
    <p><a href="http://craftingtype.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Crafting-type_tiny.png" alt="Crafting Type" width="600" height="401" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://nautil.us/" rel="nofollow external" class="bo">Nautilus</a><br>
    This beautiful website is neat, clean and easy to navigate. The typography works well, with the three fonts coming from the same family. This is a nice way to differentiate your type while maintaining consistency and not disturbing the aesthetic. Unfortunately, Web typography has its cost: 12.6 MB and 73 HTTP requests, with two <a href="http://static.nautil.us/287_918317b57931b6b7a7d29490fe5ec9f9.png" rel="nofollow external" class="bo">enormous</a> <a href="http://static.nautil.us/588_daca41214b39c5dc66674d09081940f0.png" rel="nofollow external" class="bo">images</a>, at 3.5 and 2.4 MB, respectively.</p>
    <p><a href="http://nautil.us/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Nautilus_tiny.png" alt="Nautilus" width="600" height="401" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.leedsbuildingsociety.co.uk/resources/kick-my-habits/" rel="nofollow external" class="bo">Kick My Habits</a><br>
    The thick bold typeface of “Kick My Habits” is the first thing you see on the page. The skinny typeface (named KG How Many Times), with its charming handwritten feel, contrasts with the heaviness of the other type. The website, a beautifully designed and illustrated quiz that figures out how much money you waste on bad habits, has a relaxed, informal tone. And it doesn’t spend much of your bandwidth either. With all of the imagery on the page, it’s just 1.2 MB, although 161 HTTP requests are initialized upon the initial load; more content is loaded on demand.</p>
    <p><a href="http://www.leedsbuildingsociety.co.uk/resources/kick-my-habits/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Kick-my-habits_tiny.png" alt="Kick My Habits" width="600" height="373" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://monocle.com/" rel="nofollow external" class="bo">Monocle</a><br>
    Monocle is a beautiful website with a classic quality. It uses serif and sans-serif typefaces in different weights, staying simple and elegant. Monocle is a global news website, with a focus on international affairs, business, culture and design. The layout is innovative, providing everything that the user could need right there. The categories are organized as tabs, with subcategories to further whittle down the information.</p>
    <p><a href="http://monocle.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Monocle_tiny.png" alt="Monocle" width="600" height="446" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.rezo-zero.com/" rel="nofollow external" class="bo">Rezo Zero</a><br>
    The custom typeface here by Julien Blanchet is unique and grabs attention. It establishes the identity of the brand, setting a mint green against a monochromatic website. The typeface is neither overused nor underused, translating beautifully as a logo.</p>
    <p><a href="http://www.rezo-zero.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Rezo-zero_tiny.png" alt="Rezo-Zero" width="600" height="..." style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.moresleep.net/" rel="nofollow external" class="bo">More Sleep</a><br>
    Neat but friendly and inviting! Those were my first thoughts upon visiting this website. The large type with slightly rounded corners has a friendliness to it. The typewriter-style font used for the descriptions and explanations has a round, soft, welcoming appeal.</p>
    <p><a href="http://www.moresleep.net/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/More-Sleep-1_tiny.png" alt="More Sleep" width="600" height="300" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://lenta.ru/" rel="nofollow external" class="bo">Lenta</a><br>
    Lenta is a Russian news website. It’s amazing how the graphic qualities of the type guide you and influence your perception of the website and its contents. The identity of any news website is established by its nameplate. A clean sans serif is used here, with a weight that conveys authority for the news source. The typeface remains effective when the text is translated into other languages. In keeping with a traditional news layout, articles and teasers throughout the website are in a serif typeface.</p>
    <p><a href="http://lenta.ru/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Lenta-1_tiny.png" alt="Lenta" width="600" height="425" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://pixelrecess.com/" rel="nofollow external" class="bo">Pixel Recess</a><br>
    Pixel Recess makes use of the sans-serif Adelle Sans, which is neat and legible and looks great on a screen. The more intriguing type, however, is the headline typeface, Zeitgeist, which has a distorted, pixelated, even blurry appearance, reflected in the playground slide in the top-left corner. Pixelation is traditionally regarded as a mistake, but because the rest of the website is sharp, here it draws attention to itself — a clever tactic indeed.</p>
    <p><a href="http://pixelrecess.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Pixel-Recess-1_tiny.png" alt="Pixel Recess" width="600" height="309" style="max-width: 100%; height: auto;"></a></p>
    <h3>Conclusion</h3>
    <p>It’s not just about what you say, but how you say it, right? Depending on your purpose, we could try to experiment more and get creative with our typography. We can be bold and daring with strong, large letters, or get quirky and unique with handwritten type. We should keep in mind that type should always be legible, because there’s no point in showing off type that no one can read. Type can do so much for a design if it sets rhythm and creates an atmosphere.</p>
    <p>It’s easy to get distracted by beautiful type treatments and large Retina-ready background images. But we shouldn’t neglect performance. Custom Web fonts can slow down loading times, so let’s <a href="http://css-tricks.com/preventing-the-performance-hit-from-custom-fonts/" rel="nofollow external" class="bo">find ways</a> to <a href="http://www.igvita.com/2012/09/12/web-fonts-performance-making-pretty-fast//" rel="nofollow external" class="bo">counteract that</a>.</p>
    <p>Finally, if you’d like to explore more interesting websites with a heavy focus on typography, make sure to visit <a href="http://www.typewolf.com/" rel="nofollow external" class="bo">Typewolf</a> and <a href="http://fontsinuse.com/" rel="nofollow external" class="bo">Font in Use</a>.</p>
    <p><em>(al) (ea)</em></p>
    <hr>
    <p><small>© Shavaughn Haack for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        First impressions are lasting impressions. Whether you realize it or not, your typography helps to create an experience for users before they’ve even read a word or clicked a button....</Summary>
<Website>http://www.smashingmagazine.com/2013/08/06/beautiful-typography-web-design/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33709/guest@my.umbc.edu/2be4ca8d8ddbd838b250ca19f428cce5/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>fonts</Tag>
<Tag>global-web-design</Tag>
<Tag>html</Tag>
<Tag>inspiration</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>typography</Tag>
<Tag>visual-design</Tag>
<Tag>web</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>Tue, 06 Aug 2013 04:30:52 -0400</PostedAt>
<EditAt>Tue, 06 Aug 2013 04:30:52 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33737" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33737">
<Title>U.S. Denounces Vietnam&#8217;s New Limits on Dissent on Internet</Title>
<Body>
<![CDATA[
    <div class="html-content">A new Vietnamese decree appears to limit the ability of people to share news stories critical of the government.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F07%2Fworld%2Fasia%2Fus-assails-new-limits-on-internet-in-vietnam.html%3Fpartner%3Drss%26emc%3Drss&amp;t=U.S.+Denounces+Vietnam%E2%80%99s+New+Limits+on+Dissent+on+Internet" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F07%2Fworld%2Fasia%2Fus-assails-new-limits-on-internet-in-vietnam.html%3Fpartner%3Drss%26emc%3Drss&amp;t=U.S.+Denounces+Vietnam%E2%80%99s+New+Limits+on+Dissent+on+Internet" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F07%2Fworld%2Fasia%2Fus-assails-new-limits-on-internet-in-vietnam.html%3Fpartner%3Drss%26emc%3Drss&amp;t=U.S.+Denounces+Vietnam%E2%80%99s+New+Limits+on+Dissent+on+Internet" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F07%2Fworld%2Fasia%2Fus-assails-new-limits-on-internet-in-vietnam.html%3Fpartner%3Drss%26emc%3Drss&amp;t=U.S.+Denounces+Vietnam%E2%80%99s+New+Limits+on+Dissent+on+Internet" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F07%2Fworld%2Fasia%2Fus-assails-new-limits-on-internet-in-vietnam.html%3Fpartner%3Drss%26emc%3Drss&amp;t=U.S.+Denounces+Vietnam%E2%80%99s+New+Limits+on+Dissent+on+Internet" 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/172487761592/u/0/f/640387/c/34625/s/2fa1737b/kg/342/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487761592/u/0/f/640387/c/34625/s/2fa1737b/kg/342/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>A new Vietnamese decree appears to limit the ability of people to share news stories critical of the government.     </Summary>
<Website>http://www.nytimes.com/2013/08/07/world/asia/us-assails-new-limits-on-internet-in-vietnam.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33737/guest@my.umbc.edu/d253217e086c3bbb530af9158ef77817/api/pixel</TrackingUrl>
<Tag>censorship</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>freedom-of-speech-and-expression</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>united-states</Tag>
<Tag>vietnam</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>Tue, 06 Aug 2013 01:56:19 -0400</PostedAt>
<EditAt>Tue, 06 Aug 2013 13:03:13 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33706" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33706">
<Title>Study Links TV Viewership and Twitter Conversations</Title>
<Body>
<![CDATA[
    <div class="html-content">A Nielsen study affirmed the idea that Twitter chatter during prime-time shows can sometimes cause a “significant increase” in the ratings.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F06%2Fbusiness%2Fmedia%2Fstudy-links-tv-viewership-and-twitter-conversations.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Study+Links+TV+Viewership+and+Twitter+Conversations" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F06%2Fbusiness%2Fmedia%2Fstudy-links-tv-viewership-and-twitter-conversations.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Study+Links+TV+Viewership+and+Twitter+Conversations" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F06%2Fbusiness%2Fmedia%2Fstudy-links-tv-viewership-and-twitter-conversations.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Study+Links+TV+Viewership+and+Twitter+Conversations" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F06%2Fbusiness%2Fmedia%2Fstudy-links-tv-viewership-and-twitter-conversations.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Study+Links+TV+Viewership+and+Twitter+Conversations" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F06%2Fbusiness%2Fmedia%2Fstudy-links-tv-viewership-and-twitter-conversations.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Study+Links+TV+Viewership+and+Twitter+Conversations" 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/172487769847/u/0/f/640387/c/34625/s/2f9a596d/kg/342/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487769847/u/0/f/640387/c/34625/s/2f9a596d/kg/342/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>A Nielsen study affirmed the idea that Twitter chatter during prime-time shows can sometimes cause a “significant increase” in the ratings.     </Summary>
<Website>http://www.nytimes.com/2013/08/06/business/media/study-links-tv-viewership-and-twitter-conversations.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33706/guest@my.umbc.edu/3d7c99ff5692e0106e29a9250320cef3/api/pixel</TrackingUrl>
<Tag>new</Tag>
<Tag>nielsen-media-research</Tag>
<Tag>social-media</Tag>
<Tag>technology</Tag>
<Tag>television</Tag>
<Tag>twitter</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>Tue, 06 Aug 2013 00:01:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="33708" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33708">
<Title>Motorola&#8217;s Moto X: Interface Innovation with a Learning Curve</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Several days with the Moto X reveal some ingenious new features and a few shortcomings.</p>
    <p>The Moto X, Motorola’s first phone conceived and designed since the company’s acquisition by Google, doesn’t boast as many main processor cores or camera megapixels as its rivals at the higher end of the smartphone spectrum. It does, however, allow its users lots of control via voice and gesture commands, which speed up and simplify common tasks like taking pictures, placing calls, or getting directions (see “<a href="http://www.technologyreview.com/news/517676/motorola-reveals-first-google-era-phone-the-moto-x/" rel="nofollow external" class="bo">Motorola Reveals First Google-Era Phone, the Moto X</a>”).</p>
    </div>
]]>
</Body>
<Summary>Several days with the Moto X reveal some ingenious new features and a few shortcomings.  The Moto X, Motorola’s first phone conceived and designed since the company’s acquisition by Google,...</Summary>
<Website>http://www.technologyreview.com/news/517771/motorolas-moto-x-interface-innovation-with-a-learning-curve/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33708/guest@my.umbc.edu/d549da5c07743d2daf20d7e4dbe7f3f5/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 06 Aug 2013 00:00:00 -0400</PostedAt>
</NewsItem>

</News>
