前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >HTML标准文档结构

HTML标准文档结构

作者头像
世间万物皆对象
发布2024-03-20 19:50:41
640
发布2024-03-20 19:50:41
举报
文章被收录于专栏:startstart
PC版

代码语言:javascript
复制
<!DOCTYPE html>
<html>
<head>
    <!-- 国际统一字符编码集一定要写在最前面 -->
    <meta charset="UTF-8">
    <!-- 解决浏览器兼容,以webkit内核解析,ie 以最高内核解析或以谷歌内核 -->
    <meta name="renderer" content="webkit"/>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
    <title>document</title>
    <link rel="manifest" href="%PUBLIC_URL%/manifest.json">
    <meta name="keywords" content="document"/>
    <meta name="description" content="document"/>
    <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"/>
</head>
<body>
<div id="root"></div>
</body>
</html>
H5版
代码语言:javascript
复制
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="renderer" content="webkit"/>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
    <title>document</title>
    <link rel="manifest" href="%PUBLIC_URL%/manifest.json">
    <meta name="keywords" content="document"/>
    <meta name="description" content="document"/>
    <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"/>
    <!-- m 站 start -->
    <meta name="viewport" content="initial-scale=1,width=device-width,maximum-scale=1,minimum-scale=1,user-scalable=no"/>
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
    <meta name="format-detection" content="telephone=no">
    <meta name="format-detection" content="address=no">
    <!-- m 站 end -->
</head>
<body class="body">
<div id="root"></div>
</body>
</html>
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2024-03-20,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • PC版
  • H5版
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档