HTML5基础知识点

  今天了解html,下面是我分享的有关html的基础知识点:

  ①什么是html?

  html是一种超文本标记语言(超文本标记标签)

  ②html标签是html中的最基本单位 也是最重要的部分,html标签分为单标签和双标签。

   单标签</>

    双标签<></>

  html中的一些常见标签

  1,<br/>换行标签    2,<hr/>水平分割线标签   3,<p></p>段落标签     4,<pre></pre>原格式显示标签     5,<ul></ul>无序列表标签

  6,<ol></ol>有序列表标签   7,<li></li>每个列表项标签     8,<i></i>斜体标签  9,<em></em>强调斜体标签  10,<b></b>加粗标签

  11,<strong></strong>强调加粗标签  12,<sub></sub>下标标签  13,<sup></sup>下标标签  14<h1></h1>~<h6></h6>标题1到标题6biaoq标签  15<small></small>小型字体标签  16<big></big>大型字体标签  17<tt></tt>打印机字体

  ③html基本结构

  <DOCTYPE html>

  <html>

    <head>

      <meta charset="utf-8"/>

      <title></title>

    </head>

    <body></body>

  </html>

  ④有一些实体字符,例如:

  1 &lt;<  2 &gt;>  3 &nbsp;空格  4 &yen;人民币  5 &copy;©  6 &quot;''

  ⑤头部的一些元素

  <meta name="keywords" content=""/>  网站的关键词

  <meta name="description" content=""/>  网站的描述

  <meta name="author" content=""/>  网站的作者

  <meta name="copyright" content=""/>网站的版权

  <meta http-equiv="refresh" content="秒钟;url=跳转地址"/>

  <link rel=''stylesheet'' type="text/css" href="外部链接的地址"/>

原文地址:https://www.cnblogs.com/xlboy/p/7231250.html