您的位置:首页 > Web前端 > HTML

HTML heading

2015-06-16 21:21 357 查看
1. heading 共有6种,<h1>......</h1>,<h2>......</h2>,<h3>......</h3>,<h4>......</h4>,<h5>......</h5>,<h6>......</h6>

2. <hr> 创建分割线

eg. <p>This is a paragraph.</p>

       <hr>

       <p>This is a paragraph.</p>

输出结果是

      <title>My First HTML</title>
      <meta charset="UTF-8">
      </head>

This is a paragraph.

This is a paragraph.

3. <head>......</head>

The HTML <head> element is placed between the <html> tag and the <body> tag

eg. <head>

4. <title>......</title>

The title will not be displayed in the document, but might be displayed in the browser tab.

5. <meta>

6. <style>

7. <link>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: