htm笔记

html学习笔记

字符

 

 表示空格 >表示大于号 <表示小于号,;用英文符号

 

标签含义

<doctype html><!--html5的文档规范-->
<head><!--头部标签-->
   <title>ABC</title><!--作用于搜索引擎显示结果-->
</head>
<body></body><!--身体标签,用户可看到的数据内容-->
<html lang="zh"><!--语言内容-->
<meta charset="utf-8"><!--字符集编码解析规则,utf-8万国码-->
<meta name="keywords" content="快速学习"><!--name=数据名称keywords=网站关键词-->
<meta name="description" content="每日快速学习"><!--description=网站内容描述-->
<meta http-equiv="refresh" content="3url=https//www.baidu.com">
<!--http-equiv="refresh"=将页面重新定向到另外一个网站https//www.baidu.com 3url表示时间 -->

 

html格式

<doctype html>
<html lang="zh">
<head>    
<meta charset="utf-8">
   <meta name="keywords" content="关键词">
   <meta name="description" content="网页详情描述">
   <title>搜索引擎标题</title>
</head>
<body>
   <p>文&nbsp;字显&gt;示内&lt;容</p>
</body>
</html>

 

posted on 2020-05-09 00:17  厌红尘  阅读(104)  评论(1)    收藏  举报

导航