<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:s="http://jadedpixel.com/-/spec/shopify">
  <id>https://gadgetoman.myshopify.com/blogs/news.atom</id>
  <link rel="alternate" type="text/html" href="https://gadgetoman.myshopify.com/blogs/news"/>
  <link rel="self" type="application/atom+xml" href="https://gadgetoman.myshopify.com/blogs/news.atom"/>
  <title>gadgetoman - News</title>
  <updated>2011-03-28T05:42:23-04:00</updated>
  <author>
    <name>gadgetoman</name>
  </author>
  <entry>
    <id>https://gadgetoman.myshopify.com/blogs/news/2911662-typography-test</id>
    <published>2011-03-28T05:42:23-04:00</published>
    <updated>2011-05-26T13:16:49-04:00</updated>
    <link rel="alternate" type="text/html" href="https://gadgetoman.myshopify.com/blogs/news/2911662-typography-test"/>
    <title>Typography Test</title>
    <author>
      <name>admin shopledge</name>
    </author>
    <summary type="html">
      <![CDATA[<p>The purpose of this HTML is to help determine what default settings are 
with CSS and to make sure that all possible HTML Elements are included 
in this HTML so as to not miss any possible Elements when designing a 
site.<br />
</p>
<p><a class="read-more" href="https://gadgetoman.myshopify.com/blogs/news/2911662-typography-test">More</a></p>]]>
    </summary>
    <content type="html">
      <![CDATA[<h1>CSS Basic Elements</h1>
<p>The purpose of this HTML is to help determine what default settings are with CSS and to make sure that all possible HTML Elements are included in this HTML so as to not miss any possible Elements when designing a site.</p>
<h1 id="headings">Headings</h1>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<small><a href="#wrapper">[top]</a></small>
<h1 id="paragraph">Paragraph</h1>
<p>Lorem ipsum dolor sit amet, <a href="#" title="test link">test link</a> adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.</p>
<p>Lorem ipsum dolor sit amet, <em>emphasis</em> consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.</p>
<p><img src="http://static.shopify.com/s/files/1/0065/4162/files/tumblr_l4lhnn1ziZ1qakl92o1_500_grande.jpg?821" />&nbsp;</p>
<small><a href="#wrapper">[top]</a></small>
<h1 id="list_types">List Types</h1>
<h3>Definition List</h3>
<dl><dt>Definition List Title</dt>
<dd>This is a definition list division.</dd>
<dt>Definition List Title 2</dt>
<dd>This is a definition list division.</dd>
</dl>
<h3>Ordered List</h3>
<ol>
  <li>List Item 1</li>
  <li>List Item 2</li>
  <li>List Item 3</li>
</ol>
<h3>Unordered List</h3>
<ul>
  <li>List Item 1</li>
  <li>List Item 2</li>
  <li>List Item 3</li>
</ul>
<small><a href="#wrapper">[top]</a></small>
<h1 id="form_elements">Fieldsets, Legends, and Form Elements</h1>
<fieldset>
  <legend>Legend</legend>
  <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus.</p>
  <form>
    <h2>Form Element</h2>
    <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui.</p>
    <dl><dt><label for="text_field">Text Field:</label></dt>
    <dd><input class="text" id="text_field" type="text"></dd>
          <dt><label for="text_area">Text Area:</label></dt>
    <dd><textarea rows="5" cols="40" id="text_area"></textarea></dd>
          <dt><label for="select_element">Select Element:</label></dt>
    <dd><select name="select_element">
      <optgroup label="Option Group 1">
        <option value="1">Option 1</option>
        <option value="2">Option 2</option>
        <option value="3">Option 3</option>
      </optgroup>
      <optgroup label="Option Group 2">
        <option value="1">Option 1</option>
        <option value="2">Option 2</option>
        <option value="3">Option 3</option>
      </optgroup>
    </select></dd>
          <dt><label for="radio_buttons">Radio Buttons:</label></dt>
    <dd>
      <ul>
        <li><input class="radio" name="radio_button" value="radio_1" type="radio"> Radio 1</li>
        <li><input class="radio" name="radio_button" value="radio_2" type="radio"> Radio 2</li>
        <li><input class="radio" name="radio_button" value="radio_3" type="radio"> Radio 3</li>
      </ul>
    </dd>
          <dt><label for="checkboxes">Checkboxes:</label></dt>
    <dd>
      <ul>
        <li><input class="checkbox" name="checkboxes" value="check_1" type="checkbox"> Radio 1</li>
        <li><input class="checkbox" name="checkboxes" value="check_2" type="checkbox"> Radio 2</li>
        <li><input class="checkbox" name="checkboxes" value="check_3" type="checkbox"> Radio 3</li>
      </ul>
    </dd>
          <dt><label for="password">Password:</label></dt>
    <dd><input class="password" name="password" type="password"></dd>
          <dt><label for="file">File Input:</label></dt>
    <dd><input class="file" name="file" type="file"></dd>
          <dt></dt>
    <dd>
      <ul class="inline-list">
        <li><input class="button" value="Clear" type="reset"></li>
        <li><input class="button" value="Submit" type="submit"></li>
      </ul>
    </dd>          
        </dl>                
    </form>    
</fieldset>
<small><a href="#wrapper">[top]</a></small>
<h1 id="tables">Tables</h1>
<table cellpadding="0" cellspacing="0">
  <tbody>
    <tr>
      <th>Table Header 1</th>
      <th>Table Header 2</th>
      <th>Table Header 3</th>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr class="even">
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
</tbody>
</table>
<small><a href="#wrapper">[top]</a></small>
<h1 id="misc">Misc Stuff - abbr, acronym, pre, code, sub, sup, etc.</h1>
<p>Lorem <sup>superscript</sup> dolor <sub>subscript</sub> amet, consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. <cite>cite</cite>. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. <acronym title="National Basketball Association">NBA</acronym> Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.  <abbr title="Avenue">AVE</abbr></p>
<pre><p class="word-break">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. <acronym title="National Basketball Association">NBA</acronym> Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.  <abbr title="Avenue">AVE</abbr></p></pre>
<blockquote>
    "This stylesheet is going to help so freaking much." <br />-Blockquote
</blockquote>
<small><a href="#wrapper">[top]</a></small>
<hr />
]]>
    </content>
  </entry>
  <entry>
    <id>https://gadgetoman.myshopify.com/blogs/news/2712092-the-users-guide-for-gadgetoman-is-here</id>
    <published>2011-02-15T10:51:50-05:00</published>
    <updated>2011-05-26T13:16:49-04:00</updated>
    <link rel="alternate" type="text/html" href="https://gadgetoman.myshopify.com/blogs/news/2712092-the-users-guide-for-gadgetoman-is-here"/>
    <title>The User&apos;s Guide for Gadgetoman is here!</title>
    <author>
      <name>admin shopledge</name>
    </author>
    <summary type="html">
      <![CDATA[<p>Please <a href="http://www.shopledge.com/2011/02/14/set-up-your-gadgetoman-theme-on-shopify/">visit the documentation</a> for instructions how to set up and use this theme.<br />
</p>
<p><a class="read-more" href="https://gadgetoman.myshopify.com/blogs/news/2712092-the-users-guide-for-gadgetoman-is-here">More</a></p>]]>
    </summary>
    <content type="html">
      <![CDATA[<p>&nbsp;Please <a href="http://www.shopledge.com/2011/02/14/set-up-your-gadgetoman-theme-on-shopify/">visit the documentation</a> for instructions how to set up and use this theme.<br />
</p>
]]>
    </content>
  </entry>
  <entry>
    <id>https://gadgetoman.myshopify.com/blogs/news/2644822-first-post</id>
    <published>2011-02-02T06:09:16-05:00</published>
    <updated>2011-03-28T05:41:03-04:00</updated>
    <link rel="alternate" type="text/html" href="https://gadgetoman.myshopify.com/blogs/news/2644822-first-post"/>
    <title>First Post</title>
    <author>
      <name>Shopify</name>
    </author>
    <content type="html">
      <![CDATA[<p>This is your blog. You can use it to write about new product launches, experiences, tips or other news you want your customers to read about.</p>
<p>We automatically create an Atom Feed for all your blog posts. <br />
This allows your customers to subscribe to new articles using one of many feed readers (e.g. Google Reader, News Gator, Bloglines).</p>
<p>&nbsp;</p>
]]>
    </content>
  </entry>
</feed>
