A plugin for Internet Explorer that installs Google Chrome into Internet Explorer.
1 <meta http-equiv="X-UA-Compatible" content="chrome=1">
We use the <div>
as a container element.
1 <body>
2
3 <div id="header">...</div>
4
5 <div id="article">
6 <p>...</p>
7 <div class="figure">...</div>
8 <p>...</p>
9 </div>
10
11 <div id="footer">...</div>
12
13 </body>
<header>
<footer>
<section>
<article>
<aside>
<figure>
<figcaption>
1 <body>
2
3 <header>...</header>
4
5 <article>
6 <p>...</p>
7
8 <figure>
9 <img src="graphic.png" />
10 <figcaption>...</figcaption>
11 </figure>
12
13 <p>...</p>
14 </article>
15
16 <footer>...</footer>
17
18 </body>
Add support for styling via the HTML5 Shiv:
1 <!--[if lt IE 9]>
2 <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
3 <![endif]-->
New tags can be used today.
Are tags like <person>
or <comment>
appropriate? Probably not.
1 <section itemscope itemtype="http://data-vocabulary.org/Organization">
2 <h1 itemprop="name">Sunlight Foundation</h1>
3 <section itemprop="address">
4 <span itemprop="street-address">1818 N Street NW, Suite 300</span>
5 <span itemprop="locality">Washington<span>
6 <span itemprop="region">DC</span>
7 <span itemprop="postal-code">20036</span>
8 </section>
9 Phone: <span itemprop="tel">202-742-1520</span>
10 </section>
More defined at data-vocabulary.org, but you can create your own.
Microdata enables a smarter Web. Use it today!
Embed any font. Open source fonts from Google.
1 @font-face {
2 font-family: 'Permanent Marker';
3 src: local('Permanent Marker'), url('/path/to/font.woff') format('woff');
4 }
5 h1.marker { font-family: 'Permanent Marker', sans-serif; }
The famous Star Wars opening crawl can now be rendered using CSS3.
Define bitmaps (pixel-by-pixel). Think Photoshop, not Illustrator
1 <canvas width="300" height="225">
2 ...
3 </canvas>
Used in DocumentCloud.
Scalable Vector Graphics. Think Illustrator, not Photoshop.
A port of OpenGL - an open source 3D rendering engine.
1 <video id="video" src="movie.webm" autoplay controls></video>
2 <audio id="audio" src="sound.mp3" controls></audio>
Popcorn.js enables between video and HTML content.
Browser support:
<video>
support in Internet Explorer 8 and earlier.<audio>
support in all browsers is early.New technologies enable rich web apps that don't rely on an Internet connection.
Example: a mobile web app for exit polling on Election Day 2012:
Browser support: Android and iOS browsers today.
Table of Contents | t |
---|---|
Source Files | s |
Slide Numbers | n |
Notes | 2 |
Help | h |