Home >Web Front-end >HTML Tutorial >HTML advanced knowledge

HTML advanced knowledge

墨辰丷
墨辰丷Original
2018-05-16 09:41:401506browse

本篇文章主要介绍HTML进阶知识,感兴趣的朋友参考下,希望对大家有所帮助。

文档类型

HTML5
<!DOCTYPE html&amp;gt;

93f0f5c25f18dab9d176bd4f6de5d30e元素

b2386ffb911b14667cb8f0f91ea547a7 元素在所有 HTML/XHTML 文档中都是必需的。

title 元素能够:

  • 定义浏览器工具栏中的标题

  • 提供页面被添加到收藏夹时显示的标题

  • 显示在搜索引擎结果中的页面标题

dde6fb694e6711ae5e6f381704c04ae4 标签为页面上的所有链接规定默认地址或默认目标(target)

<base target=&quot;_blank&quot; /&amp;gt;

2cdf5bf648cf2f33323966d7f58a7f3f 标签最常用于连接样式表:

<head&amp;gt;<link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;mystyle.css&quot; /&amp;gt;</head&amp;gt;

e8e496c15ba93d81f6ea4fe5f55a2244元素

e8e496c15ba93d81f6ea4fe5f55a2244 标签始终位于 head 元素中。
元数据可用于浏览器(如何显示内容或重新加载页面),搜索引擎(关键词),或其他 web 服务。
下面的 meta 元素定义页面的描述:

<meta name=&quot;description&quot; content=&quot;Free Web tutorials on HTML, CSS, XML&quot; /&amp;gt;

下面的 meta 元素定义页面的关键词:

<meta name=&quot;keywords&quot; content=&quot;HTML, CSS, XML&quot; /&amp;gt;

定期刷新:

<head&amp;gt;
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=gb2312&quot; /&amp;gt;
<meta http-equiv=&quot;Refresh&quot; content=&quot;5;url=http://www.php.cn&quot; /&amp;gt;
</head&amp;gt;

HTML字符实体

&entity_name;或者&#entity_number;
实体名称对大小写敏感(e388a4556c0f65e1904146cc1a846bee&amp;pound94b3e26ee717c64999d7867364b1b4a3

显示结果 描述 实体名称 实体编号

空格 &amp;#160;
a8b5303d3344f782c308d352d7935c34 大于号 &amp;gt; &amp;#62;
& 和号 &amp; &#38;
引号 &quot; &#34;
撇号 &apos;(IE不支持) &#39;
&cent; &#162;
£ &pound; &#163;
¥ 日圆 &yen; &#165;
欧元 &euro; &#8364;
§ 小节 &sect; &#167;
© 版权 &copy; &#169;
® 注册商标 &reg; &#174;
商标 &trade; &#8482;
× 乘号 &times; &#215;
÷ 除号 &pide; &#247;

相关推荐:

HTML知识点总结

分享一个关于HTML知识点的整合

对HTML知识点的整理汇总

The above is the detailed content of HTML advanced knowledge. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to lay out htmlNext article:How to lay out html