More Related Content
Similar to Html5不只是个传说(20)
Html5不只是个传说
- 1. HTML5 不只是个传说 钟志 百度前端研发 QQ:772637 新浪微博: http://t.sina.com.cn/zhongzhi 邮箱: [email_address] 2010 年 Webrebuild 年会广州站
- 3. HTML5 到 2022 年才会成为 推荐标准。 HTML5 规范主编 Ian Hickson http://blogs.techrepublic.com.com/programming-and-development/?p =718
- 18. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns=" http://www.w3.org/1999/xhtml " xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- 20. <style> article, aside, dialog, figure, footer, header, hgroup, menu, nav, section { display: block; } </style>
- 28. <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>HTML 5 demo</title> <!--[if IE]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"> </script> <![endif]--> <style> article, aside, dialog, figure, footer, header, hgroup, menu, nav, section { display: block; } </style> </head> <body> <!-- we’re ready for HTML 5 goodness now --> </body> </html>