HTML文档标准结构:
- <html>
- <head>
- </head>
- <body>
- this is my second html...
- </body>
- </html>
body内常用标签
<html> <!-- 这是一个注释,注释的快捷键是ctrl+shift+/--> <!-- head标签中:放入:页面的配置信息 head标签中可以加入: <title>、<meta>、<link>、<style>、 <script>、 <base>。 --> <head> <!--页面标题--> <title>百度一下,你就知道</title> <!--设置页面的编码,防止乱码现象 利用meta标签, charset="utf-8" 这是属性,以键值对的形式给出 k=v a=b 告诉浏览器用utf-8来解析这个html文档 --> <meta charset="utf-8" /><!--简写--> <!--繁写形式:(了解)--> <!--<meta http-equiv="content-type" content="text/html;charset=utf-8" />--> <!--页面刷新效果--> <!--<meta http-equiv="refresh" content="3;https://www.baidu.com" />--> <!--页面作者--> <meta name="author" content="msb;[email protected]" /> <!--设置页面搜索的关键字--> <meta name="keywords" content="教育;线上培训;架构师课程" /> <!--页面描述--> <meta name="description" content="教育详情页" /> <!--link标签引入外部资源--> <link rel="shortcut icon" href="https://www.baidu.com/favicon.ico" type="image/x-icon" /> </head> <!-- body标签中:放入:页面展示的内容 --> <body> this is a html..你好 </body> </html>View Code
标签:body,第一篇,标签,前端,元素,HTML,文档,头部 From: https://www.cnblogs.com/luspace/p/17893330.html