Send this to a friend
1
2 <input type="text" autocorrect="off" autocapitalize="off">
3
4
5 <meta name="format-detection" content="telephone=no" />
6
7
8 <meta name="apple-mobile-web-app-capable" content="yes" />
9
10
11 <input type="tel" /> <input pattern="[0-9]*">
12
13
14 <input type="url"> <input type="email">
15
16
17 <a href="http://maps.google.com/maps?q=Moon">Open in Google Maps</a>
18 <a href="tel:01234567890">Open the phone</a>
19 <a href="twitter:Tweet Tweet Tweet">Open the Twitter for iPhone app</a>
<input type="text" autocorrect="off" autocapitalize="off">
<meta name="format-detection" content="telephone=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<input type="tel" /> <input pattern="[0-9]*">
<input type="url"> <input type="email">
<a href="http://maps.google.com/maps?q=Moon">Open in Google Maps</a>
<a href="tel:01234567890">Open the phone</a>
<a href="twitter:Tweet Tweet Tweet">Open the Twitter for iPhone app</a>
Send this to a friend
via http://apiblog.youtube.com/2010/07/new-way-to-embed-youtube-videos.html
1 <iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/VIDEO_ID" frameborder="0">
2 </iframe>
<iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/VIDEO_ID" frameborder="0">
</iframe>
Send this to a friend
from here: http://www.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8" />
5 <title>Smashing HTML5!</title>
6
7 <link rel="stylesheet" href="css/main.css" type="text/css" />
8
9
10
11
12
13
14
15
16 </head>
17
18 <body id="index" class="home">
19 </body>
20 </html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Smashing HTML5!</title>
<link rel="stylesheet" href="css/main.css" type="text/css" />
</head>
<body id="index" class="home">
</body>
</html>