www.seznam.cz
big
, center
, font
, frame
, …)align
, width
, height
, …)<!doctype html>
html
, svg
, math
)b
, i
, small
, …)
The i element represents a span of text in an alternate voice or mood, or otherwise offset from the normal prose, such as a taxonomic designation, a technical term, an idiomatic phrase from another language, a thought, a ship name, or some other prose whose typical typographic presentation is italicized.
<!doctype html> <title>This is a title</title> <p>This is a paragraph.
<canvas>, <audio>, <video>, ... <article>, <nav>, <header>, <footer>, ... <keygen>, <ruby>, ...
<input type="text" autofocus /> <input type="date" min="2011-03-01" max="2011-03-31" value="2011-03-01" /> <input type="range" min="0" max="50" value="25" /> <input type="search" results="10" placeholder="Hledat..." /> <input type="text" pattern="[a-z]*" required />
data-*
<pre data-syntax="xml"> ukázka <!-- komentář --></pre>
<!-- RDFa --> <p xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Person"> <span property="v:name">Ondřej Žára</span> <span property="v:affiliation">Seznam.cz</span> <span property="v:title">Webmaster</span> </p> <!-- Microformats --> <p class="vcard"> <span class="fn">Ondřej Žára</span> <span class="org">Seznam.cz</span> <span class="title">Webmaster</span> </p> <!-- Microdata --> <p itemscope itemtype="http://data-vocabulary.org/Person"> <span itemprop="name">Ondřej Žára</span> <span itemprop="affiliation">Seznam.cz</span> <span itemprop="role">Webmaster</span> </p>
<input type="file" />
/* první soubor vybraný uživatelem */ var file = document.getElementById("fileinput").files[0]; var reader = new FileReader(); /* čtení je asynchronní */ reader.addEventListener("load", function() { alert(reader.result); }); reader.readAsDataURL(file); /* readAsText(), readAsBinaryString(), readAsArrayBuffer() */
localStorage.setItem("name", "Jan"); localStorage.setItem("age", 30); localStorage.length; /* 2 */ localStorage.getItem("age") == localStorage.age; /* "30" */ localStorage.key(0); /* "name" */ localStorage.removeItem("name"); localStorage.clear();
var callback = function(position) { alert(position.coords.longitude); /* zeměpisná délka */ alert(position.coords.latitude); /* zeměpisná šířka */ }; navigator.geolocation.getCurrentPosition(callback);
var socket = new WebSocket("ws://example.com/server.cgi"); socket.addEventListener("message", function(e) { /* příjem dat */ alert(e.data); }); socket.send("data"); /* odeslání dat */ socket.close(); /* ukončení spojení */
Rodič:
var w = new Worker("factorial.js"); w.onmessage = function(e) { alert(e.data); } /* až přijde zpráva od vlákna */ w.postMessage(10); /* poslat zprávu vláknu */
factorial.js:
var onmessage = function(e) { /* až přijde zpráva od rodiče */ var result = 1, current = parseInt(e.data); while (current) { result *= current--; } postMessage(result); /* dáme vědět zpátky */ }
<video controls poster="image.png"> <source src="video-small.mp4" type="video/mp4; codecs='avc1.42E01E, mp4a.40.2'" media="screen and (max-width:500px)" /> <source src="video.mp4" type="video/mp4; codecs='avc1.42E01E, mp4a.40.2'" /> <source src="video.ogv" type="video/ogg; codecs='theora, vorbis'"/> <source src="video.webm" type="video/webm; codecs='vp8, vorbis'" /> <!-- embed flash jako fallback --> </video>
var a = new Audio("song.mp3"); a.canPlayType("audio/mpeg"); /* "", "maybe", "probably" */ a.play();
<source src="video.mp4" media="screen and (color) and (min-device-width: 600px)" />
:checked, :not(), :nth-child(2n+1), ...
Adds +3 to your HTML skills