书写标准 HTML书写规范


Tui遵循HTML5规范标准

文档类型为HTML5


      <!DOCTYPE html>
<html lang="zh-CN"> ... </html>

移动设备兼容与优先


      <!doctype html>
      <html lang="zh_cn">
      <head>
        <title></title>
        <meta name="keywords" content="">
        <meta name="description" content="">
        <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
        <meta name="renderer" content="webkit"><meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
      </head>
      <body>
        ...
      </body>
      </html>