【HTML】P5 常用实体、元信息meta

这里写自定义目录标题


iframe嵌入广告

<iframe src="" frameborder="0"></iframe>

常用实体

空格		&nbsp;
<			&lt;
>			&gt;
&			&amp;
"			&quot;
´			&acute;
¢			&cent;
£			&pound;
¥			&yen;&euro;
©			&copy;
®			&reg;&trade;
×			&times;
÷			&divide;

元信息 meta

配置字符编码:

<meta charset="UTF-8">

针对IE浏览器的兼容性配置:

<meta http-equiv="X-UA-Compatible" content="IE=edge">

针对移动端的配置:

<meta name="viewport" content="width=device-width, initial-scale=1.0">

针对网页关键字:

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="网上购物,电商购物,皮鞋,化妆品">
<meta name="description" content="哈哈购物网,成立于2004年,致力于打造国内优秀的电商平台....">

针对搜索引擎爬虫配置:

<meta name="robots" content="noindex">
<!-- content内容包含诸多描述,包含允许、不允许搜索引擎爬虫索引等 -->

配置网页作者:

<meta name="author" content="XUHONGDUO">

配置网页生成工具:

<meta name="generator" content="Visual Studio Code">

配置定义网页版权信息:

<meta name="copyright" content="2023-2027©版权所有">

配置网页自动刷新:

<!-- 每10秒钟原地刷新 -->
<meta http-equiv="refresh" content="10">
<!-- 10秒钟刷新后到指定url -->
<meta http-equiv="refresh" content="10;url=http://www.baidu.com">