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

HTML advanced knowledge

墨辰丷
Release: 2018-05-16 09:41:40
Original
1481 people have browsed it

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

文档类型

HTML5
<!DOCTYPE html>
Copy after login

<head>元素

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

title 元素能够:

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

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

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

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

<base target="_blank" />
Copy after login

<link> 标签最常用于连接样式表:

<head><link rel="stylesheet" type="text/css" href="mystyle.css" /></head>
Copy after login

<meta>元素

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

<meta name="description" content="Free Web tutorials on HTML, CSS, XML" />
Copy after login

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

<meta name="keywords" content="HTML, CSS, XML" />
Copy after login

定期刷新:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Refresh" content="5;url=http://www.php.cn" />
</head>
Copy after login

HTML字符实体

&entity_name;或者&#entity_number;
实体名称对大小写敏感(<p>&pound</p>

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

空格  
<小于号&amp;lt;&amp;#60;
> 大于号 &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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template