janainaxDJogando.net/mu Season 6 EP 3 (14) Participem da Nova Temporada da Jogando.Net/mu em versão Season6 sem bugs e com muitas Novidades. São mais de 20 servidores hospedados na equipe jogando.net com segurança e diversão garantida, os tais são: Pvp - Free: 30.000x | VIP: 50.000x Super - Free: 10.000x | VIP:15.000X Very Easy- Free: 5.000x - VIP: 7.500x Hard - Free: 100x - VIP: 150x Extreme - Free:10x - VIP 16x War: Fre 1000x - VIP 1500x Phonix : Free 1000x Vip 3000x NOVO Confiram as novidades: ** Novos Kits Diamond V2 Supremo ! ** AnimesClud site de anime onlines http://www.animescloud.com/ ** Novos Kits Fusion V2 Supremo (Exellent + anc + soket) ** Novo Kits JDiamond (Kit Raro 100 unidades ) Resta 0/100 ** Novo Sistema Vip Premium (Muito Bom para upar rapido) ** Novos Shields Power 18opts. ** Novas Asas level master socket ** Novos rings sockets (Excellent + opção socket) ** Novos Sets de Animes (Com o melhor preço implantado somente no jogando.net) ** Novo char: Rage Fighter ** Novos itens do novo char ** Novos mapas season 6. ** Novos PVPs ** Novo site disponibilizado >> CADASTRE-SE AGORA E GANHA 5 DIAS DE VIP EM QUAISQUER DOS SERVIDORES 8 months ago
praveen kumar, Frontend Developer at ThoughtWorksNice presentation. There is one correction in slide - 29 though: article is not unique content to the page as per HTML5 specs. There can be several articles in a page. Eg. Listing of blog posts or news.1 year ago
infogearHigh level overview of HTML5 essentials.2 years ago
Are you sure you want to
Nate Kerl at Nate KerlThanks Marc! I saw you at MinneWebCon this year. Great overview and feedback on where html5 stands and push to get coding JS!2 years ago
• Less Header Code
• More Semantic HTML tags
• Media Tags
• Geolocation
• Canvas
• Input Types
• Form Validation
• Draggable
• Local Storage
• Cross-Domain Messaging
• Web Sockets
• Eventually, 3D canvas
Address
<address>
<a href="../People/Raggett/">Dave Raggett</A>,
<a href="../People/Arnaud/">Arnaud Le Hors</A>,
contacts for the w3c HTML activity
</address>
Address applies to the nearest Article or Body tag.
Section
<article>
<hgroup>
<h1>Apples</h1>
<h2>Tasty, delicious fruit!</h2>
</hgroup>
<p>The apple is the pomaceous fruit of the apple tree.</p>
<section>
<h1>Red Delicious</h1>
<p>These bright red apples are the most common found in many
supermarkets.</p>
</section>
<section>
<h1>Granny Smith</h1>
<p>These juicy, green apples make a great filling for
apple pies.</p>
</section>
</article>
Good
<body>
<h4>Apples</h4>
<p>Apples are fruit.</p>
<section>
<h2>Taste</h2>
<p>They taste lovely.</p>
<h6>Sweet</h6>
<p>Red apples are sweeter</p>
<h1>Color</h1>
<p>Apples come in various
colors.</p>
</section>
</body>
Better
<body>
<h1>Apples</h1>
<p>Apples are fruit.</p>
<section>
<h2>Taste</h2>
<p>They taste lovely.</p>
<section>
<h3>Sweet</h3>
<p>Red apples are sweeter</p>
</section>
</section>
<section>
<h2>Color</h2>
<p>Apples come in various colors.</p>
</section>
</body>
Figure and Figure Caption
<figure>
<img src="bubbles-work.jpeg"
alt="Bubbles, sitting in his office chair, works on his
latest project intently.">
<figcaption>Bubbles at work</figcaption>
</figure>
Figure and Figure Caption
<p>In <a href="#l4">listing 4</a> we see the primary
core interface
API declaration.</p>
<figure id="l4">
<figcaption>Listing 4. The primary core interface API
declaration.</figcaption>
<pre><code>interface PrimaryCore {
boolean verifyDataLine();
void sendData(in sequence<byte> data);
void initSelfDestruct();
}</code></pre>
</figure>
Time and Publish Date Attribute
<time pubdate datetime="2009-10-09T14:28-08:00"></time>
<article>
<header>
<h1>The Very First Rule of Life</h1>
<p><time pubdate datetime="2009-10-09T14:28-08:00"></time></p>
</header>
<p>If there's a microphone anywhere near you, assume it's hot and
sending whatever you're saying to the world. Seriously.</p>
<p>...</p>
<section>
<h1>Comments</h1>
<article>
<footer>
<p>Posted by: George Washington</p>
<p><time pubdate datetime="2009-10-10T19:10-08:00"></time></p>
</footer>
<p>Yeah! Especially when talking about your lobbyist friends!</p>
</article>
<article>
<footer>
<p>Posted by: George Hammond</p>
<p><time pubdate datetime="2009-10-10T19:15-08:00"></time></p>
</footer>
<p>Hey, you have the same first name as me.</p>
</article>
</section>
</article>
Breadcrumb Navigation
<nav>
<p>
<a href="/" rel="index up up up">Main</a> >
<a href="/products/" rel="up up">Products</a> >
<a href="/products/dishwashers/" rel="up">Dishwashers</a> >
<a>Second hand</a>
</p>
<p>
<a href="/" rel="index up up">Main</a> >
<a href="/second-hand/" rel="up">Second hand</a> >
<a>Dishwashers</a>
</p>
</nav>
Similarly, pagination can be done with
first, last, next and prev
Mark is highlighting something
<p><mark>Momentum is preserved across the wormhole.
Electromagnetic
radiation can travel in both directions through a wormhole,
but matter cannot.</mark></p>
Strong is different, denotes importance
<p>When a wormhole is created, a vortex normally forms.
<strong>Warning: The vortex caused by the wormhole opening
will
annihilate anything in its path.</strong> Vortexes can be avoide
when
using sufficiently advanced dialing technology.</p>
Not all Navigation should use <nav>
<nav></nav>
only main navigation, for instance
footer nav is secondary
Article is unique content to the page.
<article></article>
Hgroup, highest rank group of headings
<hgroup></hgroup>
Itemscope and Itemprop
<div itemscope>
<p>My name is <span itemprop="name">Elizabeth</span>.</p>
</div>
<div itemscope>
<p>My name is <span itemprop="name">Daniel</span>.</p>
</div>
<div itemscope>
<p>My name is <span itemprop="name">Neil</span>.</p>
<p>My band is called <span itemprop="band">Four Parts Water</
span>.</p>
<p>I am <span itemprop="nationality">British</span>.</p>
</div>
Editable Content
Turn an element into an editable area.
<script>
document.getElementsByTagName('p')[0].contentEditable = true;
</script>
Web Sockets
var ws = new WebSocket("ws://hostname:80/");
ws.onmessage = function (event) {
event.data
};
ws.onclose = function () {};
ws.onopen = function () {};
Web Worker
new Worker("worker.js");
- Don’t have access to DOM or page.
- Have to communicate through postMessage API
http://html5demos.com/
Web GL
3D O3D
http://www.youtube.com/watch?v=uofWfXOzX-g
Questions?
Marc Grabanski:
http://marcgrabanski.com
User interface and web application
development.
Examples: http://mjgin.com/work.html
Twitter: http://twitter.com/1Marc
Email: m@marcgrabanski.com
article is not unique content to the page as per HTML5 specs. There can be several articles in a page. Eg. Listing of blog posts or news. 1 year ago