Suggest a Snippet Login Register
  • LOG IN:

    Not a member? JOIN NOW!
     Username                   Password
    Remember me Recover password
DevSnippets Design Community & Snippets Gallery
  • Subscribe by RSS
>
  • Webdesign
    • Design
    • HTML5
    • lists
    • Menu
    • Navigation
    • Portfolio
    • Showcase
    • Template
    • Tooltip
    • Tutorial
    • webdesign
  • Web development
    • AJAX
    • CodeIgniter
    • CSS
    • CSS3
    • Database
    • Javascript
    • jQuery
    • Mootools
    • MySQL
    • PHP
    • PHP Framework
    • plugins
    • WordPress
    • WordPress Hacks
  • Inspiration
    • Fonts
    • Icons
    • Inspiration
    • Mac
    • Mac apps
    • Photography
    • Wallpapers
  • Snippets
In {Articles} -15th Feb- {24 Comments}

Designing for the Future with HTML5+CSS3 : Tutorials and Best Practices

HTML5 is the next major version of HTML. HTML5 provides some great new features for web designers who love to create readable code and semantically-meaningful layouts. HTML 5 introduces and enhances a wide range of features including: form controls, APIs, dragging and dropping, multimedia, drawing graphics on screen and a lot more.

The new specifications has added quite a few interesting and useful tags for structuring your markup.
In today’s post, we would like to showcase some of the best blogs and websites in the industry built with HTML5+CSS3. At the end of the post we would like you to check out detailed write-ups and tutorials that aims to demonstrate how we will be building websites when the specifications are finalized and the browser vendors have implemented them. Let’s get started marking up the blog page.

Showcase Of Beautiful Website built with HTML5+CSS3

- Full Frontal

full-frontal

- Sketchpad

Sketchpad Is a No-Flash-Required HTML5 Painting App.

sketchpad

- EnergyCell

energycell

- Zoocha

Zoocha

- Idea Foundry

Idea Foundry

- Tableless

Tableless

- Giovannitufo

giovannitufo

- DesignIntellection

designintellection

- Antilight

Antilight

- TheDesignSuperhero

thedesignsuperhero

- On Air

on-air

- SlimKiwi

slimkiwi

- Information Highwayman

Information Highwayman

Learning how to create elegant and working HTML5 Layouts

1. Have a Field Day with HTML5 Forms

Have a Field Day with HTML5 Forms

Here we’re going to take a look at how to style a beautiful HTML5 payment form using some advanced CSS and latest CSS3 techniques. Let’s have a look at the markup:

<form id=payment>
    <fieldset>
         <legend>Your details</legend>
         <ol>
                <li>
                     <label for=name>Name</label>
                     <input id=name name=name type=text placeholder="First and last name" required autofocus>
                </li>

2. Coding A HTML 5 Layout From Scratch

Coding A HTML 5 Layout From Scratch

A very basic layout which covers most of the elements we can start coding using HTML5. Basically: the page’s name and it’s slogan, a menu, a highlighted (featured) area, a post listing, an extras section with some external links, an about box and finally a copyright statement. At the end of this tutorial you’ll learn how to:

  • Use Graceful Degradation techniques and technologies to keep things in place for legacy browsers.
  • Use Progressive Enhancement techniques and technologies to be up to date with the latest trends.
  • Use HTML5 alongside a rising technology: Microformats.
  • Have a clear vision of some of the most exciting new features HTML5 and CSS3 will bring.
<header id="banner" class="body">
	<h1><a href="#">Smashing HTML5! <strong>HTML5 in the year <del>2022</del> <ins>2009</ins></strong></a></h1>

	<nav><ul>
		<li class="active"><a href="#">home</a></li>
		<li><a href="#">portfolio</a></li>

		<li><a href="#">blog</a></li>
		<li><a href="#">contact</a></li>
	</ul></nav>

</header><!-- /#banner -->

Check out the demo here.

3. HTML 5 and CSS 3: The Techniques You’ll Soon Be Using

HTML 5 and CSS 3: The Techniques You’ll Soon Be Using

In this tutorial, we are going to learn how to build a blog page using next-generation techniques from HTML 5 and CSS 3. Pretty much your every day blog design. Header with title, horizontal navigation, content area with comments and form, sidebar and a footer.

Take a look at the markup:

<!doctype html>
<html>
<head>
	<title>Page title</title>
</head>
<body>
	<header>
		<h1>Page title</h1>
	</header>
	<nav>
		<!-- Navigation -->
	</nav>
	<section id="intro">
		<!-- Introduction -->
	</section>
	<section>
		<!-- Main content area -->
	</section>
	<aside>
		<!-- Sidebar -->
	</aside>
	<footer>
		<!-- Footer -->
	</footer>

</body>
</html>

Check out the demo here.

4. Structural tags in HTML5

Structural tags in HTML5

The HTML5 specification has added quite a few interesting and useful tags for structuring your markup. For a majority of everyday uses, these tags will replace many of our typical div entries from our code. So let’s take a look at how we would put together a typical blog page with our new structural tags.

<!DOCTYPE html>
<html>
  <head>
    <title>Standard Blog</title>
  </head>
  <body>
    <header>
      <h1><a href="#">Standard Blog</a></h1>
    </header>
    <nav>
      <ul>
        <li><a href="#">Home</a></li>
        <li><a href="#">Archives</a></li>
        <li><a href="#">About</a></li>
        <li><a href="#">Contact</a></li>
      </ul>
    </nav>
    <section>
      <article>
        <header>
          <h1><a href="#">Title</a></h1>
        </header>
        <section>
          <p>Lorem ipsum...</p>
        </section>
      </article>

Further Resources:

  • - 70 Must-Have CSS3 and HTML5 Tutorials and Resources
  • - Introduction to CSS3
  • - Using CSS3
  • - CSS3 Exciting Functions and Features: 30+ Useful Tutorials
  • - Yes, You Can Use HTML 5 Today!
  • - Thinking About HTML 5 canvas Accessibility
  • - HTML5 Gallery
  • - HTML5 Gallery

Category: Article | Leave a Comment | 24 Comments

Related Posts

  • 12 Elegant, Free & High Quality HTML5+CSS3 Templates 12 Elegant, Free & High Quality HTML5+CSS3 Templates
  • 5 Advanced CSS Pseudo Classes that will Save your Day 5 Advanced CSS Pseudo Classes that will Save your Day

24 Comments, Add Comment or Ping

  1. Mohammad Koubeissi says:
    February 15, 2010 at 7:10 am

    I seem to only use the HTML5 doctype at the moment. Maybe I’ll create my new site in HTML5/CSS3, we shall see.

  2. brin de web says:
    February 15, 2010 at 8:28 am

    Another great site using HTML5 and CSS3 : http://www.goetter.fr

  3. Dzinepress says:
    February 15, 2010 at 10:40 am

    really helping article using HTML5 and CSS3.

  4. SM says:
    February 15, 2010 at 1:37 pm

    Perfect collection! Thanks

  5. TutsBot says:
    February 15, 2010 at 9:03 pm

    Really ,

    very helpfull tutorials

    Thanks alot :)

  6. Jordan Walker says:
    February 16, 2010 at 7:32 am

    Very nice collection, I think it is going to be awhile before HTML5 is widely accepted since so many people use IE still!

  7. FlashMoto says:
    February 16, 2010 at 8:41 am

    Thanks for this roundup. More and more web developers start using HTML5.

  8. Angel Grablev says:
    February 16, 2010 at 1:19 pm

    Can’t believe you missed http://52framework.com built on html5 and css3 framework… if you want to build websites in html5 and css3 check it out its a pretty awesome framework.

    • Noura Yehia says:
      February 16, 2010 at 1:45 pm

      We didn’t miss it, we are including it in an upcoming post next week so much related to the post’s subject :)

  9. hubeRsen says:
    February 16, 2010 at 10:24 pm

    nice ressource, thanks!

  10. Niels Matthijs says:
    February 17, 2010 at 4:00 pm

    As for now, there’s little css3 designing for the future that can be done. It’s mostly vendor-specific prefixes, imperfect implementations and fuzzy specs.

    Let’s all pray all this “testing” has little to do with the actual future of css.

  11. Philippe says:
    February 18, 2010 at 11:32 am

    Hey! Thanks a lot for the link.
    Sorry if I disappoint you: I just changed my template.
    There were some issues with Safari.
    I explain why here:
    http://on-air.hiseo.fr/fatras/le-nouveau-gabarit-html5-css3/
    and how I’ve done the brand new one.

  12. PelFusion says:
    February 18, 2010 at 1:18 pm

    informative article

  13. Rick Cusick says:
    February 19, 2010 at 8:11 pm

    Brilliant resource for both topics here – looking more and more into these new tools for an upcoming project and this really helped my thoughts process around it. Thanks!

  14. G13Media says:
    March 14, 2010 at 8:43 pm

    Great list of site to preview. Can’t wait until all the browsers support this.

  15. Ronald H. says:
    March 21, 2010 at 6:48 pm

    HTML5 is truly a better structure then what’s being used today. It’s just makes more sense. I can’t wait until all browsers catch up with it. And by all browser I mean Internet Explorer.

Trackbacks/Pingbacks

  • designfloat.com
  • MartinGehrke.com » HTML5 & CSS3, and PING
  • CSS Brigit | Designing for the Future with HTML5+CSS3 : Tutorials and Best Practices
  • pligg.com
  • Designing for the Future with HTML5+CSS3 : Tutorials and Best Practices | DevSnippets | [codepotato]
  • Sitio recomendado con contenidos para desarrollo web « El blog de Martini
  • Designing for the Future with HTML5+CSS3 : Tutorials and Best Practices | Fixzero
  • Free I Share » Blog Archive » HTML5新增标签

Sponsored Ads

ADVERTISE HERE

Sponsored Ads

DevSnippets Latest Articles

  • Using Illustrations in WebDesign: 30 Creative Examples
    Tags: Illustration, Inspiration, webdesign Jul/20/2010
  • Dark and Mysterious High Quality Desktop Wallpapers
    Tags: Dark, Wallpapers Jun/23/2010
  • 10+ Most Beautiful Island Photography on Earth
    Jun/16/2010
  • 35 High Definition iPad Wallpapers For A Great Experience
    Tags: Inpiration, Wallpapers Jun/09/2010
  • 30 Unique Logo Designs That Actually Say Something
    Tags: Branding, Inspiration, Logo Jun/02/2010
  • Creating 10 Most-Used Javascript Techniques Using Pure CSS Styling
    Tags: CSS, Tutorial May/31/2010
  • 40 Creative Advertisements With Unexpected Ideas
    Tags: Advertising, Inspiration May/27/2010
  • Getting Slim, Spicy, & WordPress-Ready with Top 10 jQuery Plugins
    Tags: jQuery, WordPress May/25/2010
  • Spicing Up Your Tumblr Experience: Beautiful Themes, Icons and Apps
    Tags: Templates, Tumblr May/19/2010
  • 20 NEW & FREE High Quality (X)HTML/CSS Templates
    Tags: CSS, Design, Template, Tutorial May/17/2010
More Articles →

Design Community News

  • Is It Worth Shifting To Photoshop CS5?

    SloDive
    Jul/04/2010
  • Free Wordpress Theme Vector Nature Template

    templates4all
    Jul/04/2010
  • Best jQuery plugins – June 2010

    Spider8411
    Jun/22/2010
  • Freebies: Vintage Mega Pack 10 Samples from Designious.com

    Doink
    Jun/22/2010
  • CSS3 Animations, the Power Back to CSS Part 1: Transitions

    Teylor Feliz
    Jun/22/2010
  • Create a Photo-Realistic Candle with Basic Photoshop Tools

    Frank
    Jun/22/2010
  • Credit cards and payment icon set

    icon sets
    Jun/22/2010
  • 40 Refreshing Nature Inspired Web Designs

    Brukhar
    Jun/22/2010
  • How to Create a Tumblr Theme (Code Structure)

    Dainis Graveris
    Jun/21/2010
  • The Simple Photoshop CS5 Cheat Sheet

    Frank
    Jun/21/2010
More News →

Our Friends

  • Graphic Design School

  • Designm.ag

Top ↑

Add a Snippet / Design News

© 2008-2010 DEVSNIPPETS | Made by Noura Yehia | Submit Snippet | About| Subscribe | Advertise
In partnership with (mt) Media Temple