<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Developer 2.0 &#187; HTML</title>
	<atom:link href="http://webdeveloper2.com/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdeveloper2.com</link>
	<description>Resources for web creators</description>
	<lastBuildDate>Wed, 01 Feb 2012 13:46:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<cloud domain='webdeveloper2.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>A web app framework to save Gotham City?</title>
		<link>http://webdeveloper2.com/2011/10/batman-web-app-framework/</link>
		<comments>http://webdeveloper2.com/2011/10/batman-web-app-framework/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 11:31:33 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Toolkit]]></category>

		<guid isPermaLink="false">http://webdeveloper2.com/?p=2994</guid>
		<description><![CDATA[If you&#8217;re interested in working with the very latest in web development platforms then you&#8217;ve probably already played with node.js. Personally, it&#8217;s still on my to-do list but I&#8217;m tempted to try it out along with batman.js &#8211; a web app framework for node.js by Nick Small, Shopify&#8216;s resident JavaScript guy. I&#8217;ll let Nick explain: batman.js is [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re interested in working with the very latest in web development platforms then you&#8217;ve probably already played with <a href="http://nodejs.org/">node.js</a>. Personally, it&#8217;s still on my to-do list but I&#8217;m tempted to try it out along with <a href="http://batmanjs.org/">batman.js</a> &#8211; a web app framework for node.js by <a href="http://twitter.com/nciagra">Nick Small</a>, <a href="http://www.shopify.com/">Shopify</a>&#8216;s resident JavaScript guy. I&#8217;ll let Nick explain:</p>
<blockquote><p>batman.js is a full-stack microframework extracted from real use and designed to maximize developer and designer happiness. It favors convention over configuration, template-less views, and high performance by simply not doing very much. It all adds up to blazingly fast web apps with a great development process; it&#8217;s batman.js.</p></blockquote>
<p>Look at the examples, it&#8217;s quite an accomplishment. The framework provides a full MVC architecture with simple data binding and pure HTML views. Working applications can be built with suspiciously little code. The following code is enough to build a working to-do app for instance:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;!--&lt;span class=&quot;hiddenSpellError&quot; pre=&quot;&quot;--&gt;DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;Alfred: Batman's Todos&lt;/title&gt;
    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=Edge&quot; /&gt;

    &lt;link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;resources/alfred.css&quot; type=&quot;text/css&quot;&gt;

&lt;script type=&quot;text/&lt;span class=&quot;&gt;// &lt;![CDATA[
javascript&lt;/span&gt;&quot; src=&quot;../lib/es5-shim.js&quot;&gt;
// ]]&gt;&lt;/script&gt;
&lt;script type=&quot;text/&lt;span class=&quot;&gt;// &lt;![CDATA[
javascript&lt;/span&gt;&quot; src=&quot;../lib/batman.js&quot;&gt;
// ]]&gt;&lt;/script&gt;
&lt;script type=&quot;text/&lt;span class=&quot;&gt;// &lt;![CDATA[
javascript&lt;/span&gt;&quot; src=&quot;../lib/batman.solo.js&quot;&gt;
// ]]&gt;&lt;/script&gt;
&lt;script type=&quot;text/&lt;span class=&quot;&gt;// &lt;![CDATA[
javascript&lt;/span&gt;&quot; src=&quot;../lib/coffee-script.js&quot;&gt;
// ]]&gt;&lt;/script&gt;
&lt;/head&gt;

&lt;body&gt;
    &lt;div id=&quot;container&quot;&gt;
        &lt;h1&gt;Alfred&lt;/h1&gt;
        &lt;form data-formfor-todo=&quot;controllers.todos.emptyTodo&quot; data-event-submit=&quot;controllers.todos.create&quot;&gt;
          &lt;input class=&quot;new-item&quot; placeholder=&quot;add a todo item&quot; data-bind=&quot;todo.body&quot; /&gt;
        &lt;/form&gt;

        &lt;ul id=&quot;items&quot;&gt;
            &lt;li data-foreach-todo=&quot;Todo.all&quot; data-mixin=&quot;animation&quot;&gt;
                &lt;input type=&quot;checkbox&quot; data-bind=&quot;todo.isDone&quot; data-event-change=&quot;todo.save&quot; /&gt;
                &lt;label data-bind=&quot;todo.body&quot; data-addclass-done=&quot;todo.&lt;span class=&quot;&gt;isDone&quot; data-mixin=&quot;editable&quot;&gt;&lt;/label&gt;
                &lt;a data-event-click=&quot;todo.destroy&quot;&gt;delete&lt;/a&gt;
            &lt;/li&gt;
            &lt;li&gt;&lt;span data-bind=&quot;Todo.all.length&quot;&gt;&lt;/span&gt; &lt;span data-bind=&quot;'item' | pluralize Todo.all.length&quot;&gt;&lt;/span&gt;&lt;/li&gt;
        &lt;/ul&gt;
    &lt;/div&gt;

    &lt;script type=&quot;text/coffeescript&quot;&gt;
    # Create our application and namespace.
    class Alfred extends Batman.App
      @global yes

      # setup our root route. When the app starts up, it will automatically call TodosController::index
      @root 'todos#index'

    # Define the principal Todo model with `body` and `isDone` attributes, and tell it to persist itself using Local Storage.
    class Alfred.Todo extends Batman.Model
      # @global exposes this class on the global object, so you can access `Todo` directly.
      @global yes

      # @persist tells a model which storage mechanism it should use to load and save. Batman.LocalStorage is the simplest, simply persisting your records to the browser storage.
      @persist Batman.LocalStorage

      # @encode tells the persistence mechanism which fields to archive. You can also setup specific encoder and decoder functions to handle specific types of data.
      @encode 'body', 'isDone'

      # just some defaults, but these are optional
      body: ''
      isDone: false

    class Alfred.TodosController extends Batman.Controller
      emptyTodo: null

      index: -&gt;
        @set 'emptyTodo', new Todo

        # add some example todos to show off.
        Todo.load (error, todos) -&gt;
          # you always want to make sure you handle errors (more elegantly than this) when writing connection code
          throw error if error
          unless todos and todos.length
            callback = (error) -&gt; throw error if error
            new Todo(body: 'joker escaped arkham again', isDone: true).save(callback)
            new Todo(body: 'riddler sent riemann hypothesis').save(callback)
            new Todo(body: 'bane wants to meet, not worried').save(callback)

        # prevent the implicit render of views/todos/index.html
        @render false

      create: =&gt;
        @emptyTodo.save (error, record) =&gt;
          throw error if error

          # we use set so that our form will automatically update with the new Todo instance
          @set 'emptyTodo', new Todo

        # since this isn't actually a route action, nothing will be rendered here.

    # Start the app. This will start up the dispatcher and a number of other mechanisms.
    Alfred.run()
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Which looks like this.<br />
<a href="http://batmanjs.org/examples/alfred.html"><img class="aligncenter size-large wp-image-3516" title="Alfred- Batman's Todos" src="http://webdeveloper2.com/wp-content/uploads/2011/10/Alfred-Batmans-Todos-600x271.png" alt="" width="600" height="271" /></a></p>
<p>The one thing stopping me from diving into this straight away is that it&#8217;s yet another platform to learn. The fact that it&#8217;s JavaScript is good and I love coffeescript&#8217;s syntax but I&#8217;m slightly daunted by getting over than first hurdle of familiarising myself with everything.</p>
<p>Have you used batman.js? Is it worth trying out?</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://webdeveloper2.com/2008/03/experiment-2-semantic-blog-template-part-1/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://webdeveloper2.com/wp-content/plugins/contextual-related-posts/default.png&w=125&h=125&zc=1" alt="Experiment #2 &#8211; Semantic Blog Template &#8211; Part 1" title="Experiment #2 &#8211; Semantic Blog Template &#8211; Part 1" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2008/03/experiment-2-semantic-blog-template-part-1/" rel="bookmark" class="crp_title">Experiment #2 &#8211; Semantic Blog Template &#8211; Part 1</a></li><li><a href="http://webdeveloper2.com/2009/05/swine-flu-google-fu-monkey-wank-fever/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm1.static.flickr.com/48/132750728_8f0342f1ac_b.jpg&w=125&h=125&zc=1" alt="Swine Flu + Google-Fu = Monkey Wank Fever" title="Swine Flu + Google-Fu = Monkey Wank Fever" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2009/05/swine-flu-google-fu-monkey-wank-fever/" rel="bookmark" class="crp_title">Swine Flu + Google-Fu = Monkey Wank Fever</a></li><li><a href="http://webdeveloper2.com/2008/11/experiment-3-illustrated-tweets/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://webdeveloper2.com/wp-content/uploads/2008/11/pipes1.png&w=125&h=125&zc=1" alt="Experiment #3 &#8211; Illustrated Tweets" title="Experiment #3 &#8211; Illustrated Tweets" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2008/11/experiment-3-illustrated-tweets/" rel="bookmark" class="crp_title">Experiment #3 &#8211; Illustrated Tweets</a></li><li><a href="http://webdeveloper2.com/2009/06/ubervu-php-library/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm4.static.flickr.com/3544/3449609327_162669dc66_o.jpg&w=125&h=125&zc=1" alt="uberVU php library" title="uberVU php library" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2009/06/ubervu-php-library/" rel="bookmark" class="crp_title">uberVU php library</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://webdeveloper2.com/2011/10/batman-web-app-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fluid Web Design Kit</title>
		<link>http://webdeveloper2.com/2011/10/fluid-web-design-kit/</link>
		<comments>http://webdeveloper2.com/2011/10/fluid-web-design-kit/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 09:00:36 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Toolkit]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://webdeveloper2.com/?p=3469</guid>
		<description><![CDATA[The Fluid Baseline Grid System is (yet another) HTML5 &#38; CSS3 development kit for fluid web design and responsive layouts.  This one&#8217;s main strength is its simplicity; the kit doesn&#8217;t try to include every possible optimisation so you can add what you need instead of removing the bits that aren&#8217;t relevant. The main features are: Fluid [...]]]></description>
			<content:encoded><![CDATA[<p>The Fluid Baseline Grid System is (yet another) HTML5 &amp; CSS3 development kit for fluid web design and responsive layouts.  This one&#8217;s main strength is its simplicity; the kit doesn&#8217;t try to include every possible optimisation so you can add what you need instead of removing the bits that aren&#8217;t relevant.</p>
<p><a href="http://fluidbaselinegrid.com/"><img class="aligncenter size-large wp-image-3471" title="Fluid Baseline Grid - A sensible HTML5 and CSS3 development kit" src="http://webdeveloper2.com/wp-content/uploads/2011/10/Fluid-Baseline-Grid-A-sensible-HTML5-and-CSS3-development-kit-600x160.png" alt="Fluid Baseline Grid - A sensible HTML5 and CSS3 development kit" width="600" height="160" /></a></p>
<p>The main features are:</p>
<ul>
<li><strong>Fluid Grids</strong> &#8211; the default set up is a fluid three column layout though you can change this as you see fit.</li>
<li><strong>Typography</strong> &#8211; attention has been paid to ensuring a sensible set of default font sizes and line heights.</li>
<li><strong>Responsive Layouts</strong> &#8211; The framework is built on the mobile-first strategy of responsive layouts with pre-defined rules for adjusting layouts and typography to different display devices.</li>
</ul>
<p><a href="http://fluidbaselinegrid.com/">Fluid Baseline Grid &#8211; A sensible HTML5 and CSS3 development kit</a>.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://webdeveloper2.com/2011/09/columnal-a-responsive-css-grid-system/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm3.static.flickr.com/2773/4270697958_9896eb090e_z.jpg&w=125&h=125&zc=1" alt="Columnal &#8211; A responsive CSS grid system" title="Columnal &#8211; A responsive CSS grid system" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/09/columnal-a-responsive-css-grid-system/" rel="bookmark" class="crp_title">Columnal &#8211; A responsive CSS grid system</a></li><li><a href="http://webdeveloper2.com/2010/09/firefox-4-beta-2-html5-css3-preview/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm1.static.flickr.com/44/140896634_6563038dde_z.jpg&w=125&h=125&zc=1" alt="Firefox 4 Beta 2 &#8211; HTML5 / CSS3 Preview" title="Firefox 4 Beta 2 &#8211; HTML5 / CSS3 Preview" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2010/09/firefox-4-beta-2-html5-css3-preview/" rel="bookmark" class="crp_title">Firefox 4 Beta 2 &#8211; HTML5 / CSS3 Preview</a></li><li><a href="http://webdeveloper2.com/2011/08/html5-boilerplate-2-0/" rel="bookmark"></a> <a href="http://webdeveloper2.com/2011/08/html5-boilerplate-2-0/" rel="bookmark" class="crp_title">HTML5 Boilerplate 2.0</a></li><li><a href="http://webdeveloper2.com/2011/11/typographic-rhythm-and-scale-with-gridlover/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm1.static.flickr.com/179/379979781_468e8b8ae7_z.jpg?zz=1&w=125&h=125&zc=1" alt="Typographic rhythm and scale with Gridlover" title="Typographic rhythm and scale with Gridlover" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/11/typographic-rhythm-and-scale-with-gridlover/" rel="bookmark" class="crp_title">Typographic rhythm and scale with Gridlover</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://webdeveloper2.com/2011/10/fluid-web-design-kit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The story (so far) of a social game</title>
		<link>http://webdeveloper2.com/2011/09/the-story-of-a-social-game/</link>
		<comments>http://webdeveloper2.com/2011/09/the-story-of-a-social-game/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 09:11:06 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://webdeveloper2.com/?p=3431</guid>
		<description><![CDATA[A funny thing happened a couple of weeks ago; a picture of a simple social game popped into my head &#8211; just like magic. The premise was for a simple grid of blocks which could be captured or built upon up to a specified height. I don&#8217;t recall what I was doing at the time [...]]]></description>
			<content:encoded><![CDATA[<p>A funny thing happened a couple of weeks ago; a picture of a simple social game popped into my head &#8211; just like magic. The premise was for a simple grid of blocks which could be captured or built upon up to a specified height. I don&#8217;t recall what I was doing at the time (possibly sitting on the toilet), but having thought about it for a few minutes I had an idea of how the game would play.</p>
<p>I quickly wrote down the basic rules as I had imagined them:</p>
<h2>The Rules</h2>
<ul>
<li>Players can move north,south,west,east or up (creating a new block).</li>
<li>Players can only move on to an unoccupied block.</li>
<li>Neutral blocks can be captured from an adjacent block of equal or greater height.</li>
<li>Opposition blocks can be captured from an adjacent block of greater height.</li>
<li>The game ends when the cube is full.</li>
</ul>
<h2>Concept Testing</h2>
<p>My first tests were done using a paint app, a just drew out the grid and then simulated the moves/block captures with coloured blobs. This appeared to make sense after 4 or 5 runs through so I moved into physical prototyping &#8211; Play Dough.</p>
<p>Testing with Play Dough came with a couple of unexpected discoveries:</p>
<ol>
<li>The game works well as a board-game, you could play this with Lego just as easily.</li>
<li>Occasionally the game needs to be abandoned due to the dragon-making requirements of young children &#8211; this feature is unlikely to make it into the final game.</li>
</ol>
<p>All in all I was quite happy with the way it worked so I decided to spend an evening building a quick browser-based prototype with a bit of jQuery.<br />
<a href="http://dev.webdeveloper2.com/game/"><img class="aligncenter size-large wp-image-3463" title="A Game (of sorts)" src="http://webdeveloper2.com/wp-content/uploads/2011/09/A-Game-of-sorts-600x511.png" alt="" width="600" height="511" /></a></p>
<h2>Bringing it to the web</h2>
<p>My first mockup was quick and dirty HTML, CSS and jQuery &#8211; an environment in which I can comfortably play around. I think that for a project like this where the early stages are just throwing ideas around, it&#8217;s important to work in a medium that you enjoy &#8211; if I&#8217;d needed to keep referring to documentation or search for answers, the fun would have been sucked out of it and there&#8217;s a good chance that I would have abandoned the whole thing.</p>
<p>When I say &#8220;quick and dirty&#8221; I mean that there was no real thought given to structuring the code, I just wanted a working prototype so things like using onclick attributes on HTML tags rather than binding events were fair game (and as I write this, the current demo still contains a fair bit of that stuff).</p>
<p>After 2-3 hours of tinkering I had a working browser based game to play with so I spent a good while playing with myself (and also testing the game), trying out different strategies, different sizes of grids and numbers of players. It seemed to hang together pretty well &#8211; then, like most side projects, it had to be put onto the back-burner whilst real-life responsibilities took over my time (curse you, real life!).</p>
<p><a href="http://dev.webdeveloper2.com/game/"><img class="aligncenter size-large wp-image-3465" title="A Game (of sorts)2" src="http://webdeveloper2.com/wp-content/uploads/2011/09/A-Game-of-sorts2-600x534.png" alt="" width="600" height="534" /></a></p>
<h2>Back to work thanks to BarCamp</h2>
<p>Like many back-burner projects, my little game may have ended up languishing forlornly along with the mountains of other web-experiments that I&#8217;ve accumulated over the years. Luckily it was saved by <a href="http://barcampmediacity.co.uk/">BarCamp MediaCityUK</a>.</p>
<div id="attachment_3451" class="wp-caption alignright" style="width: 160px"><a href="https://picasaweb.google.com/lh/photo/l2ed2qBxTMDUx1r7WIEE3g?feat=directlink"><img class="size-thumbnail wp-image-3451" title="Headphone seats" src="http://webdeveloper2.com/wp-content/uploads/2011/09/IMG_20110917_145818-150x150.jpg" alt="Headphone seats" width="150" height="150" /></a><p class="wp-caption-text">These things are excellent</p></div>
<p>I&#8217;d never attended a BarCamp before but the experience came highly recommended so I snagged myself a ticket for BarCamp MediaCityUK over at the new BBC North HQ in Salford Quays. In the week running up to the event I was unsure what I might do for a presentation, I figured that I&#8217;d probably dust off something from my hoard of back-burner projects and the game was the most recent of those. After lunch I sat down in one of the super-comfortable &#8220;headphones&#8221; cubby holes and spent an hour tidying up my game prototype and creating a couple of accompanying HTML pages to use as presentation slides.</p>
<p>Later I presented my game concept to a small but interested group of BarCampers. The concept was favourably received and the ensuing discussion brought up some main points:</p>
<ul>
<li>Simplicity is good &#8211; the game is easy to learn and understand, also easier to write robust code for.</li>
<li>Playtesting is vital &#8211; <a href="http://twitter.com/stecks">Katie Steckles</a> suggested that I should try to get as many people as possible to play it and hopefully report any issues</li>
<li>Social gaming &#8211; I see the potential to run the game completely independently of any specific platform though allowing sign-in via social network authentication. This would allow somebody logged in via facebook on their laptop to play a game against somebody logged in via Twitter on their phone etc.</li>
</ul>
<h2>Next Steps</h2>
<p>I&#8217;m currently working on parallel developments. I&#8217;m keeping the demo version up-to-date with tweaks based on feedback that I&#8217;ve received and I&#8217;m building a re-factored version that is entirely separated from the interface and allows different rules variation to be plugged in for testing out different ideas. I&#8217;ve also started work on a 3D WebGL interface using Mr.Doob&#8217;s excellent three.js library.</p>
<p><a href="http://dev.webdeveloper2.com/game/"><img class="aligncenter size-large wp-image-3464" title="A Game (of sorts)3" src="http://webdeveloper2.com/wp-content/uploads/2011/09/A-Game-of-sorts3-600x543.png" alt="" width="600" height="543" /></a></p>
<p>Please <a title="Try out A Game" href="http://dev.webdeveloper2.com/game/">try the game out</a> and let me know if you have any suggestions, ideas or criticisms.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://webdeveloper2.com/2011/10/multi-user-javascript-for-web-pages-peerbind/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm1.static.flickr.com/36/75687093_81509fa28a_z.jpg?zz=1&w=125&h=125&zc=1" alt="Multi-user JavaScript for web pages &#8211; Peerbind" title="Multi-user JavaScript for web pages &#8211; Peerbind" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/10/multi-user-javascript-for-web-pages-peerbind/" rel="bookmark" class="crp_title">Multi-user JavaScript for web pages &#8211; Peerbind</a></li><li><a href="http://webdeveloper2.com/2008/09/smeet-something-new-in-virtual-worlds/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://lh5.ggpht.com/kinsella.dave/SNwJ2G1ocqI/AAAAAAAAAIw/0k4TeHJq9ec/smeet%5B4%5D.jpg?imgmax=800&w=125&h=125&zc=1" alt="Smeet, something new in virtual worlds?" title="Smeet, something new in virtual worlds?" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2008/09/smeet-something-new-in-virtual-worlds/" rel="bookmark" class="crp_title">Smeet, something new in virtual worlds?</a></li><li><a href="http://webdeveloper2.com/2007/04/fowd-2007-finding-your-creative-vein/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://webdeveloper2.com/wp-content/uploads/2008/10/cvein-702385.jpg&w=125&h=125&zc=1" alt="FOWD 2007 &#8211; Finding Your Creative Vein" title="FOWD 2007 &#8211; Finding Your Creative Vein" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2007/04/fowd-2007-finding-your-creative-vein/" rel="bookmark" class="crp_title">FOWD 2007 &#8211; Finding Your Creative Vein</a></li><li><a href="http://webdeveloper2.com/2008/12/web-advent-day-18-iphone-apps/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://webdeveloper2.com/wp-content/uploads/2008/12/iphone.jpg&w=125&h=125&zc=1" alt="Web Advent Day 18 &#8211; iPhone Apps" title="Web Advent Day 18 &#8211; iPhone Apps" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2008/12/web-advent-day-18-iphone-apps/" rel="bookmark" class="crp_title">Web Advent Day 18 &#8211; iPhone Apps</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://webdeveloper2.com/2011/09/the-story-of-a-social-game/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS3 Image Styles with graceful fallback</title>
		<link>http://webdeveloper2.com/2011/09/css3-image-styles-with-graceful-fallback/</link>
		<comments>http://webdeveloper2.com/2011/09/css3-image-styles-with-graceful-fallback/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 17:01:04 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Toolkit]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://webdeveloper2.com/?p=3454</guid>
		<description><![CDATA[Web Designer Wall have published a nice demo of some CSS3 image effects that can be achieved by applying images as a background to an HTML element. There&#8217;s also a neat little jQuery snippet to dynamically wrap images in a span element with the appropriate classes to get the best results from browsers which support [...]]]></description>
			<content:encoded><![CDATA[<p>Web Designer Wall have published a nice demo of some CSS3 image effects that can be achieved by applying images as a background to an HTML element.</p>
<p><a href="http://webdesignerwall.com/tutorials/css3-image-styles"><img class="aligncenter size-large wp-image-3456" title="CSS3 Image Styles by Web Designer Wall" src="http://webdeveloper2.com/wp-content/uploads/2011/09/css3-image-wrap-demo-600x652.png" alt="CSS3 Image Styles by Web Designer Wall" width="600" height="652" /></a></p>
<p>There&#8217;s also a neat little jQuery snippet to dynamically wrap images in a span element with the appropriate classes to get the best results from browsers which support CSS3.</p>
<p><a href="http://webdesignerwall.com/tutorials/css3-image-styles">CSS3 Image Styles</a> by <a href="http://webdesignerwall.com">Web Designer Wall</a>.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://webdeveloper2.com/2011/08/brushed-metal-style-in-css3/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm1.static.flickr.com/77/185859253_2cf6124f03_z.jpg&w=125&h=125&zc=1" alt="Brushed Metal style in CSS3" title="Brushed Metal style in CSS3" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/08/brushed-metal-style-in-css3/" rel="bookmark" class="crp_title">Brushed Metal style in CSS3</a></li><li><a href="http://webdeveloper2.com/2011/10/fluid-web-design-kit/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm4.static.flickr.com/3344/4563864777_ece042a721_z.jpg&w=125&h=125&zc=1" alt="Fluid Web Design Kit" title="Fluid Web Design Kit" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/10/fluid-web-design-kit/" rel="bookmark" class="crp_title">Fluid Web Design Kit</a></li><li><a href="http://webdeveloper2.com/2011/09/3d-image-slider-in-css-slicebox/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm5.static.flickr.com/4065/4346012794_eaf691dcd5_z.jpg&w=125&h=125&zc=1" alt="3D image slider in CSS &#8211; Slicebox" title="3D image slider in CSS &#8211; Slicebox" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/09/3d-image-slider-in-css-slicebox/" rel="bookmark" class="crp_title">3D image slider in CSS &#8211; Slicebox</a></li><li><a href="http://webdeveloper2.com/2010/09/understanding-css3-gradients/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm4.static.flickr.com/3297/3423035341_d3dfb648ca_z.jpg&w=125&h=125&zc=1" alt="Understanding CSS3 Gradients" title="Understanding CSS3 Gradients" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2010/09/understanding-css3-gradients/" rel="bookmark" class="crp_title">Understanding CSS3 Gradients</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://webdeveloper2.com/2011/09/css3-image-styles-with-graceful-fallback/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The evolution of the web [infographic]</title>
		<link>http://webdeveloper2.com/2011/09/evolution-of-the-web-infographic/</link>
		<comments>http://webdeveloper2.com/2011/09/evolution-of-the-web-infographic/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 16:15:37 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Infographic]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://webdeveloper2.com/?p=3421</guid>
		<description><![CDATA[This super interactive infographic details the evolution of the web as a timeline showing browsers version releases and the introduction of key technologies &#8211; from HTTP right through to HTML5 and CSS3. This is interesting from a technical point of view, the main graphic is beautifully rendered as an SVG image via the Raphael.js library. You can [...]]]></description>
			<content:encoded><![CDATA[<p>This super <a href="http://evolutionofweb.appspot.com/">interactive infographic</a> details the evolution of the web as a timeline showing browsers version releases and the introduction of key technologies &#8211; from HTTP right through to HTML5 and CSS3.</p>
<p style="text-align: center;"><a href="http://evolutionofweb.appspot.com/"><img class="size-large wp-image-3423 aligncenter" title="The evolution of the web" src="http://webdeveloper2.com/wp-content/uploads/2011/09/The-evolution-of-the-web-600x208.png" alt="The evolution of the web - Infographic" width="600" height="208" /></a></p>
<p>This is interesting from a technical point of view, the main graphic is beautifully rendered as an SVG image via the <a href="http://raphaeljs.com/">Raphael.js</a> library.</p>
<p>You can also preview screen grabs of the various versions of the browsers: Mosaic, Netscape Navigator, Opera, Internet Explorer, Safari, Firefox, Chrome and Chrome OS.</p>
<p style="text-align: center;"><a href="http://evolutionofweb.appspot.com/"><img class="size-large wp-image-3424 aligncenter" title="The evolution of the web-netscape4" src="http://webdeveloper2.com/wp-content/uploads/2011/09/The-evolution-of-the-web-netscape4-600x432.png" alt="The evolution of the web-netscape4" width="600" height="432" /></a></p>
<p>Some of these were a real nostalgia trip for me, my first browser was Mosaic which came bundled with a Compuserve account.</p>
<p>What was the first browser that you used?</p>
<p><a href="http://evolutionofweb.appspot.com/">The evolution of the web</a>.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://webdeveloper2.com/2011/11/animate-css-plug-and-play-css-animations/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm1.static.flickr.com/73/230644655_0437bea898_z.jpg&w=125&h=125&zc=1" alt="Animate.css &#8211; plug-and-play CSS animations" title="Animate.css &#8211; plug-and-play CSS animations" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/11/animate-css-plug-and-play-css-animations/" rel="bookmark" class="crp_title">Animate.css &#8211; plug-and-play CSS animations</a></li><li><a href="http://webdeveloper2.com/2007/04/to-web-30-and-beyond/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://novaspivack.typepad.com/RadarNetworksTowardsAWebOS.jpg&w=125&h=125&zc=1" alt="To Web 3.0 &#8230; and beyond!" title="To Web 3.0 &#8230; and beyond!" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2007/04/to-web-30-and-beyond/" rel="bookmark" class="crp_title">To Web 3.0 &#8230; and beyond!</a></li><li><a href="http://webdeveloper2.com/2011/12/linkedin-bootcamp-infographic/" rel="bookmark"><img width="150" height="150" src="http://webdeveloper2.com/wp-content/uploads/2011/12/11.11.28_Bootcamp-150x150.png" class="crp_thumb wp-post-image" alt="LinkedIn Bootcamp Infographic" title="LinkedIn Bootcamp Infographic" border="0" /></a> <a href="http://webdeveloper2.com/2011/12/linkedin-bootcamp-infographic/" rel="bookmark" class="crp_title">LinkedIn Bootcamp Infographic</a></li><li><a href="http://webdeveloper2.com/2011/08/brushed-metal-style-in-css3/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm1.static.flickr.com/77/185859253_2cf6124f03_z.jpg&w=125&h=125&zc=1" alt="Brushed Metal style in CSS3" title="Brushed Metal style in CSS3" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/08/brushed-metal-style-in-css3/" rel="bookmark" class="crp_title">Brushed Metal style in CSS3</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://webdeveloper2.com/2011/09/evolution-of-the-web-infographic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Patternizer &#8211; HTML5 Canvas Pattern Generator Tool</title>
		<link>http://webdeveloper2.com/2011/09/patternizer-html5-canvas-pattern-generator-tool/</link>
		<comments>http://webdeveloper2.com/2011/09/patternizer-html5-canvas-pattern-generator-tool/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 16:38:05 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Toolkit]]></category>

		<guid isPermaLink="false">http://webdeveloper2.com/?p=3161</guid>
		<description><![CDATA[Patternizer is a small (&#60; 2Kb) javascript to generate stripe-based patterns using HTML5&#8242;s canvas element. This project by Matthew Lein and Dave Johnson also comes with a handy UI to generate patterns visually and then export the code needed to create them. You can even save your patterns and showcase them on the site or look [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://patternizer.com/">Patternizer</a> is a small (&lt; 2Kb) javascript to generate stripe-based patterns using HTML5&#8242;s canvas element.<br />
This project by <a href="http://twitter.com/matthewlein">Matthew Lein</a> and Dave Johnson also comes with a handy UI to generate patterns visually and then export the code needed to create them.</p>
<p><a href="http://patternizer.com"><img class="aligncenter size-large wp-image-3172" title="Patternizer - Stripe Pattern Generator Tool" src="http://webdeveloper2.com/wp-content/uploads/2011/09/Patternizer-Stripe-Pattern-Generator-Tool-600x483.png" alt="" width="600" height="483" /></a></p>
<p>You can even save your patterns and showcase them on the site or look at patterns built by others to see how they&#8217;ve achieved different effects.</p>
<p><a href="http://info.patternizer.com/featured"><img class="aligncenter size-large wp-image-3171" title="Featured Patterns - Patternizer Info" src="http://webdeveloper2.com/wp-content/uploads/2011/09/Featured-Patterns-Patternizer-Info-600x643.png" alt="" width="600" height="643" /></a></p>
<p>The script is available from <a href="https://github.com/matthewlein/patternizer.js">https://github.com/matthewlein/patternizer.js</a>.</p>
<p><a href="http://patternizer.com/ih7">Patternizer &#8211; Stripe Pattern Generator Tool</a>.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://webdeveloper2.com/2011/11/dark-patterns-guide-evil-websites/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm3.staticflickr.com/2077/2280160084_e74cf079c2_z.jpg&w=125&h=125&zc=1" alt="Dark Patterns &#8211; a guide to evil websites" title="Dark Patterns &#8211; a guide to evil websites" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/11/dark-patterns-guide-evil-websites/" rel="bookmark" class="crp_title">Dark Patterns &#8211; a guide to evil websites</a></li><li><a href="http://webdeveloper2.com/2011/06/amazingly-useful-resources-for-html5-and-css3-development/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm3.static.flickr.com/2465/3951143570_20b4eccd3f_b.jpg&w=125&h=125&zc=1" alt="Amazingly Useful resources for HTML5 and CSS3 development" title="Amazingly Useful resources for HTML5 and CSS3 development" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/06/amazingly-useful-resources-for-html5-and-css3-development/" rel="bookmark" class="crp_title">Amazingly Useful resources for HTML5 and CSS3 development</a></li><li><a href="http://webdeveloper2.com/2011/08/the-pixelator/" rel="bookmark"></a> <a href="http://webdeveloper2.com/2011/08/the-pixelator/" rel="bookmark" class="crp_title">The Pixelator</a></li><li><a href="http://webdeveloper2.com/2008/12/web-advent-day-20-online-image-editing/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm3.static.flickr.com/2202/2630696092_5ce00dd910_b.jpg&w=125&h=125&zc=1" alt="Web Advent Day 20 &#8211; Online Image Editing" title="Web Advent Day 20 &#8211; Online Image Editing" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2008/12/web-advent-day-20-online-image-editing/" rel="bookmark" class="crp_title">Web Advent Day 20 &#8211; Online Image Editing</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://webdeveloper2.com/2011/09/patternizer-html5-canvas-pattern-generator-tool/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bootstrap, from Twitter</title>
		<link>http://webdeveloper2.com/2011/08/bootstrap-from-twitter/</link>
		<comments>http://webdeveloper2.com/2011/08/bootstrap-from-twitter/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 13:11:34 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Toolkit]]></category>

		<guid isPermaLink="false">http://webdeveloper2.com/?p=3000</guid>
		<description><![CDATA[Bootstrap is a toolkit from Twitter designed to kickstart development of webapps and sites. It includes base CSS and HTML for typography, forms, buttons, tables, grids, navigation, and more. This is a really nice starting point for quickly getting an idea into production. It&#8217;s common for UI details to get pushed back to later in development [...]]]></description>
			<content:encoded><![CDATA[<p>Bootstrap is a toolkit from Twitter designed to kickstart development of webapps and sites. It includes base CSS and HTML for typography, forms, buttons, tables, grids, navigation, and more.</p>
<p>This is a really nice starting point for quickly getting an idea into production. It&#8217;s common for UI details to get pushed back to later in development in order to concentrate on core functionality, however it&#8217;s these details that make the biggest impact on users so having a lot of the nitty-gritty stuff done from the start is a real bonus.</p>
<p style="text-align: center;"><a href="http://twitter.github.com/bootstrap/"><img class="size-large wp-image-3001 aligncenter" title="Bootstrap, from Twitter" src="http://webdeveloper2.com/wp-content/uploads/2011/08/Bootstrap-from-Twitter-600x433.png" alt="" width="600" height="433" /></a></p>
<p>via <a href="http://twitter.github.com/bootstrap/">Bootstrap, from Twitter</a>.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://webdeveloper2.com/2009/04/twitters-new-web-interface/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm4.static.flickr.com/3445/3231178720_5e2c1c45a8_b.jpg&w=125&h=125&zc=1" alt="Twitter&#8217;s new web interface" title="Twitter&#8217;s new web interface" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2009/04/twitters-new-web-interface/" rel="bookmark" class="crp_title">Twitter&#8217;s new web interface</a></li><li><a href="http://webdeveloper2.com/2011/10/free-api-management-console-for-developers/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm1.static.flickr.com/89/253500563_a0bf2c6007_z.jpg&w=125&h=125&zc=1" alt="Free API Management Console for Developers" title="Free API Management Console for Developers" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/10/free-api-management-console-for-developers/" rel="bookmark" class="crp_title">Free API Management Console for Developers</a></li><li><a href="http://webdeveloper2.com/2008/05/twitter-is-the-new-facebook/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://lh6.ggpht.com/kinsella.dave/SCodk-r0w8I/AAAAAAAAAEg/SPr6rr7Hqas/twitterfacespace_thumb%5B2%5D.png?imgmax=800&w=125&h=125&zc=1" alt="Twitter is the new Facebook" title="Twitter is the new Facebook" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2008/05/twitter-is-the-new-facebook/" rel="bookmark" class="crp_title">Twitter is the new Facebook</a></li><li><a href="http://webdeveloper2.com/2008/05/scoble-does-twitter/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://lh4.ggpht.com/kinsella.dave/SECC8fuOnBI/AAAAAAAAAFA/eOHABnCwz0o/adventures2134A%5B7%5D.jpg?imgmax=800&w=125&h=125&zc=1" alt="Scoble does Twitter" title="Scoble does Twitter" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2008/05/scoble-does-twitter/" rel="bookmark" class="crp_title">Scoble does Twitter</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://webdeveloper2.com/2011/08/bootstrap-from-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 presentations: The Why, Wow and How</title>
		<link>http://webdeveloper2.com/2011/08/html5-presentations-the-why-wow-and-how/</link>
		<comments>http://webdeveloper2.com/2011/08/html5-presentations-the-why-wow-and-how/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 18:43:43 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://webdeveloper2.com/?p=2933</guid>
		<description><![CDATA[If you&#8217;ve attended any Web Design or Development conferences in the past couple of years, you may have noticed that HTML is being used on a fairly frequent basis as the platform (rather than just the subject) on which presenters are building their presentations. This recent presentation: HTML5 Showcase for Web Developers: The Wow and [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve attended any Web Design or Development conferences in the past couple of years, you may have noticed that HTML is being used on a fairly frequent basis as the platform (rather than just the subject) on which presenters are building their presentations.</p>
<p>This recent presentation: <a href="http://www.htmlfivewow.com/slide1">HTML5 Showcase for Web Developers: The Wow and the How</a> is a superb example of an HTML5 slide deck.</p>
<p><a href="http://www.htmlfivewow.com/"><img class="aligncenter size-large wp-image-2934" title="HTML5 Showcase for Web Developers- The Wow and the How" src="http://webdeveloper2.com/wp-content/uploads/2011/08/HTML5-Showcase-for-Web-Developers-The-Wow-and-the-How-600x372.png" alt="" width="600" height="372" /></a></p>
<p>The reasons for this are obvious in the case of presenting web technologies &#8211; the ability to embed demonstrations into the presentation and also the use familiar tools such as CSS for controlling the style of the slides. However for non-web technologists, there are some advantages too.</p>
<ul>
<li>A presentation built in HTML is web-native so it&#8217;s easy enough to publish to the widest possible audience.</li>
<li>You can SEO optimise the slide deck in order to build search engine traffic.</li>
<li>By recording analytics data from the published deck, you can discover which parts of your presentation garner the most interest in order to help you to plan future presentations.</li>
</ul>
<p>Thankfully you don&#8217;t need to build the slideshow mechnism from scratch. Deck.js provides a nice flexible framework within which you can build an HTML presentation using basic HTML skills. The library even comes with a few pre-made themes so you can get straight to work on the content.</p>
<p><a href="http://imakewebthings.github.com/deck.js/"><img class="aligncenter size-large wp-image-2935" title="Deck JS » Modern HTML Presentations" src="http://webdeveloper2.com/wp-content/uploads/2011/08/Deck-JS-»-Modern-HTML-Presentations-600x375.png" alt="" width="600" height="375" /></a></p>
<p>If you&#8217;ve got a killer presentation, why not publish it as HTML and get even more out of it?</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://webdeveloper2.com/2008/12/web-advent-day-3-online-presentation-applications/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://webdeveloper2.com/wp-content/uploads/2008/12/sliderocket.jpg&w=125&h=125&zc=1" alt="Web Advent Day 3 &#8211; Online Presentation Applications" title="Web Advent Day 3 &#8211; Online Presentation Applications" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2008/12/web-advent-day-3-online-presentation-applications/" rel="bookmark" class="crp_title">Web Advent Day 3 &#8211; Online Presentation Applications</a></li><li><a href="http://webdeveloper2.com/2008/07/at-last-a-web-based-presentation-app-which-doesnt-suck-hopefully/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://webdeveloper2.com/wp-content/plugins/contextual-related-posts/default.png&w=125&h=125&zc=1" alt="At last, a web-based presentation app which doesn&#8217;t suck (hopefully)" title="At last, a web-based presentation app which doesn&#8217;t suck (hopefully)" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2008/07/at-last-a-web-based-presentation-app-which-doesnt-suck-hopefully/" rel="bookmark" class="crp_title">At last, a web-based presentation app which doesn&#8217;t suck (hopefully)</a></li><li><a href="http://webdeveloper2.com/2011/08/html5-boilerplate-2-0/" rel="bookmark"></a> <a href="http://webdeveloper2.com/2011/08/html5-boilerplate-2-0/" rel="bookmark" class="crp_title">HTML5 Boilerplate 2.0</a></li><li><a href="http://webdeveloper2.com/2010/09/learn-about-html5-and-the-future-of-the-web/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm4.static.flickr.com/3164/2337307518_4716168a5d_b.jpg&w=125&h=125&zc=1" alt="Learn About HTML5 and the Future of the Web" title="Learn About HTML5 and the Future of the Web" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2010/09/learn-about-html5-and-the-future-of-the-web/" rel="bookmark" class="crp_title">Learn About HTML5 and the Future of the Web</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://webdeveloper2.com/2011/08/html5-presentations-the-why-wow-and-how/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Don’t Fear the Internet</title>
		<link>http://webdeveloper2.com/2011/08/don%e2%80%99t-fear-the-internet/</link>
		<comments>http://webdeveloper2.com/2011/08/don%e2%80%99t-fear-the-internet/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 10:48:08 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://webdeveloper2.com/?p=2922</guid>
		<description><![CDATA[Don&#8217;t fear the Internet is a website by Jessica Hische &#38; Russ Maschmeyer dedicated to explaining the basics of web design for graphic artists, print designers or any other creative person who has little to no experience of building a website. The site states that they are not trying to train people up to professional [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dontfeartheinternet.com/">Don&#8217;t fear the Internet</a> is a website by <a href="http://jessicahische.is/awesome">Jessica Hische</a> &amp; <a href="http://strangenative.com/">Russ Maschmeyer</a> dedicated to explaining the basics of web design for graphic artists, print designers or any other creative person who has little to no experience of building a website. The site states that they are not trying to train people up to professional web design standards, just to give them enough knowledge to express their personal style on the web.</p>
<p><a href="http://www.dontfeartheinternet.com/"><img class="aligncenter size-large wp-image-2929" title="Don’t Fear the Internet" src="http://webdeveloper2.com/wp-content/uploads/2011/08/Don’t-Fear-the-Internet-600x294.png" alt="" width="600" height="294" /></a></p>
<p>The video tutorials have been created in very clear HD, so you aren&#8217;t squinting at the screen trying to read complex code and there are clear diagrams to explain core concepts.</p>
<p><a href="http://www.dontfeartheinternet.com/"><img class="aligncenter size-large wp-image-2930" title="Don’t Fear Starting From Scratch - Don’t Fear the Internet" src="http://webdeveloper2.com/wp-content/uploads/2011/08/Don’t-Fear-Starting-From-Scratch-Don’t-Fear-the-Internet-600x337.png" alt="" width="600" height="337" /></a></p>
<p><a href="http://www.dontfeartheinternet.com/"><img class="aligncenter size-large wp-image-2931" title="Don’t Fear Starting From Scratch - Don’t Fear the Internet2" src="http://webdeveloper2.com/wp-content/uploads/2011/08/Don’t-Fear-Starting-From-Scratch-Don’t-Fear-the-Internet2-600x335.png" alt="" width="600" height="335" /></a></p>
<p>If you are one of the many people who have creative ideas for the web and want to learn how to implement them for yourself then you may want to keep watching this site.</p>
<p><a href="http://www.dontfeartheinternet.com/">Don’t Fear the Internet</a>.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://webdeveloper2.com/2011/06/why-your-website-needs-an-ssl-certificate/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm3.static.flickr.com/2468/3878741556_5aaa29113d_o.png&w=125&h=125&zc=1" alt="Why your website needs an SSL certificate" title="Why your website needs an SSL certificate" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/06/why-your-website-needs-an-ssl-certificate/" rel="bookmark" class="crp_title">Why your website needs an SSL certificate</a></li><li><a href="http://webdeveloper2.com/2008/09/accessibility-for-the-hard-of-browsing/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://lh3.ggpht.com/kinsella.dave/SL8EyXU-VII/AAAAAAAAAIU/GH8NL5vRmn4/dlpage_lg%5B6%5D.jpg?imgmax=800&w=125&h=125&zc=1" alt="Accessibility for the hard of browsing" title="Accessibility for the hard of browsing" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2008/09/accessibility-for-the-hard-of-browsing/" rel="bookmark" class="crp_title">Accessibility for the hard of browsing</a></li><li><a href="http://webdeveloper2.com/2007/01/slicing-the-global-brain/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://webdeveloper2.com/wp-content/uploads/2008/10/globalbrain-791350.jpg&w=125&h=125&zc=1" alt="Slicing the global brain" title="Slicing the global brain" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2007/01/slicing-the-global-brain/" rel="bookmark" class="crp_title">Slicing the global brain</a></li><li><a href="http://webdeveloper2.com/2008/07/at-last-a-web-based-presentation-app-which-doesnt-suck-hopefully/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://webdeveloper2.com/wp-content/plugins/contextual-related-posts/default.png&w=125&h=125&zc=1" alt="At last, a web-based presentation app which doesn&#8217;t suck (hopefully)" title="At last, a web-based presentation app which doesn&#8217;t suck (hopefully)" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2008/07/at-last-a-web-based-presentation-app-which-doesnt-suck-hopefully/" rel="bookmark" class="crp_title">At last, a web-based presentation app which doesn&#8217;t suck (hopefully)</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://webdeveloper2.com/2011/08/don%e2%80%99t-fear-the-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Boilerplate 2.0</title>
		<link>http://webdeveloper2.com/2011/08/html5-boilerplate-2-0/</link>
		<comments>http://webdeveloper2.com/2011/08/html5-boilerplate-2-0/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 13:50:57 +0000</pubDate>
		<dc:creator>Dave</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Toolkit]]></category>

		<guid isPermaLink="false">http://webdeveloper2.com/?p=2921</guid>
		<description><![CDATA[HTML5 Boilerplate &#8211; one of the best starting points for building HTML5 websites has been updated to version 2.0. This coincides neatly with the projects&#8217; first birthday. Some of the main changes in this release are: Now using normalize.css instead of the traditional CSS Reset stylesheet. normalize.css retains useful browser defaults and includes several common fixes to [...]]]></description>
			<content:encoded><![CDATA[<p>HTML5 Boilerplate &#8211; one of the best starting points for building HTML5 websites has been updated to version 2.0. This coincides neatly with the projects&#8217; first birthday.</p>
<p><a href="http://html5boilerplate.com/"><img class="aligncenter size-large wp-image-2925" title="HTML5 Boilerplate - A rock-solid default template for HTML5 awesome" src="http://webdeveloper2.com/wp-content/uploads/2011/08/HTML5-Boilerplate-A-rock-solid-default-template-for-HTML5-awesome1-600x257.png" alt="" width="600" height="257" /></a></p>
<p>Some of the main changes in this release are:</p>
<ul>
<li>Now using normalize.css instead of the traditional CSS Reset stylesheet.<br />
<a href="http://github.com/necolas/normalize.css/"> normalize.css</a> retains useful browser defaults and includes several common fixes to improve cross-browser (desktop and mobile) styling consistency.</li>
<li>Faster build script<br />
The build script will inline <a href="http://www.w3.org/TR/CSS2/cascade.html#at-import">CSS @imports</a> together. so you can keep separate files for authoring but deploy a combined production version.<br />
You can also autogenerate a <a href="http://www.w3.org/TR/html5/offline.html">cache manifest</a> file to allow your site/app to work offline.</li>
<li>Chrome frame prompt for IE6<br />
The latest version of <a href="http://code.google.com/chrome/chromeframe/">chrome frame</a> does not require admin access to be installed. IE6 users can be prompted to install it for a better browsing experience.</li>
<li><a href="https://github.com/scottjehl/Respond#readme">respond.js</a> added as part of a shift to a responsive approach. You can now use media queries anywhere and get full IE6-8 support.</li>
</ul>
<p><a href="http://html5boilerplate.com/">HTML5 Boilerplate &#8211; A rock-solid default template for HTML5 awesome.</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://webdeveloper2.com/2011/06/amazingly-useful-resources-for-html5-and-css3-development/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm3.static.flickr.com/2465/3951143570_20b4eccd3f_b.jpg&w=125&h=125&zc=1" alt="Amazingly Useful resources for HTML5 and CSS3 development" title="Amazingly Useful resources for HTML5 and CSS3 development" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/06/amazingly-useful-resources-for-html5-and-css3-development/" rel="bookmark" class="crp_title">Amazingly Useful resources for HTML5 and CSS3 development</a></li><li><a href="http://webdeveloper2.com/2010/09/learn-about-html5-and-the-future-of-the-web/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm4.static.flickr.com/3164/2337307518_4716168a5d_b.jpg&w=125&h=125&zc=1" alt="Learn About HTML5 and the Future of the Web" title="Learn About HTML5 and the Future of the Web" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2010/09/learn-about-html5-and-the-future-of-the-web/" rel="bookmark" class="crp_title">Learn About HTML5 and the Future of the Web</a></li><li><a href="http://webdeveloper2.com/2010/09/the-wilderness-downtown-video-power-of-html5/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm4.static.flickr.com/3262/2591933295_d54c348c5b_z.jpg&w=125&h=125&zc=1" alt="The Wilderness Downtown Video. Power of HTML5." title="The Wilderness Downtown Video. Power of HTML5." width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2010/09/the-wilderness-downtown-video-power-of-html5/" rel="bookmark" class="crp_title">The Wilderness Downtown Video. Power of HTML5.</a></li><li><a href="http://webdeveloper2.com/2011/10/fluid-web-design-kit/" rel="bookmark"><img src="http://webdeveloper2.com/wp-content/themes/WD2/processor/phpThumb.php?src=http://farm4.static.flickr.com/3344/4563864777_ece042a721_z.jpg&w=125&h=125&zc=1" alt="Fluid Web Design Kit" title="Fluid Web Design Kit" width="150" height="150" border="0" class="crp_thumb" /></a> <a href="http://webdeveloper2.com/2011/10/fluid-web-design-kit/" rel="bookmark" class="crp_title">Fluid Web Design Kit</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://webdeveloper2.com/2011/08/html5-boilerplate-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: webdeveloper2.com @ 2012-02-04 04:10:24 by W3 Total Cache -->
