Blogger Information
Blog 30
fans 0
comment 0
visits 22542
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML标题
的确
Original
642 people have browsed it
 

HTML文档中,标题很重要!

标题是通过<h1>——<h6>标签来定义的

<h1>定义最大标题,<h6>定义最小标题

实例:

 

<!DOCTYPE html> 
<html>
<head>
<meta charset=”utf-8”>
<title>118qq.top</title>
</head>
<body>
<h1>这是标题</h1>
<h2>这是标题</h2>
<h3>这是标题</h3>
<h4>这是标题</h4>
<h5>这是标题</h5>
<h6>这是标题</h6>
</body>
</html>

 

注意:浏览器会自动在标题的前后添加空行

标题很重要

请确保HTML标题标签只用于标题。不要仅仅是为了生成粗体或大号的文本而使用标题。

搜索引擎使用标题为您网页的结构和内容编制索引。

因为用户可以通过标题来快速浏览你的网页,所以用标题来呈现文档结构是很重要的

应该将h1用作主标题,其次是h2,再其次是h3,以此类推

HTML水平线

<hr>标签可以在HTML中创建水平线

hr元素可用于分割内容

实例:

 

<!DOCTYPE html>
 <html>
 <head>
 <meta charset=”utf-8”>
 <title>118qq.top</title>
 </head>
 <body>
 <p>hr标签定义水平线</p>
 <hr>
 <p>这是段落</p>
 <hr>
 <p>这是段落</p>
 <hr>
 </body>
 </html>

 

HTML注释

可以将注释插入HTML中,这样可以提高其可读性,使代码更易被人误解。浏览器会忽略注释,也不会显示它们

实例:

 

<!DOCTYPE html>
 <html>
 <head>
 <meta charset=”utf-8”>
 <title>118qq.top</title>
 </head>
 <body>
 <!--这是一个注释,注释在浏览器中不会显示!-->
 <p>118qq.top/p>
 </body>
 </html>

 

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post