首页 > 代码库 > 2014/12/12 – HTML页面规范参考模板

2014/12/12 – HTML页面规范参考模板

<!DOCTYPE HTML><html><head>    <meta charset="UTF-8">    <title>页面名称</title>    <meta name="keywords" content=""/>    <meta name="description" content=""/>    <meta http-equiv="X-UA-Compatible" content="IE=Edge">    <!-- Mobile Specific Metas    ================================================== -->    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1,user-scalable=no">    <meta name="apple-mobile-web-app-capable" content="yes" />    <!-- CSS    ================================================== -->    <link rel="shortcut icon" href="http://www.yunos.com/favicon.ico">    <link rel="stylesheet" href="http://m.alicdn.com/css/index.css"/>    <style>/* css */</style></head> <body>    <!--[if lt IE 8]>    <div class="g_tips">        <p>            已经有超过90%的用户使用更高版本            <a target="_blank" title="下载Chrome" href="http://www.google.com/chrome/">Google Chrome</a>            或            <a target="_blank" href="http://www.microsoft.com/zh-cn/download/ie.aspx?q=internet+explorer">Internet Explorer</a>            体验到了更流畅更精彩的页面,你还不试试?        </p>    </div>    <![endif]-->     <h1>300,000,00</h1>     <script src="js/index.js"></script>    <script>// js  </script></body></html>

IE9以下兼容HTML5的JS

转自:http://www.w3cfuns.com/blog-5440229-5402622.html

2014/12/12 – HTML页面规范参考模板