HTML

HTML是超文本标记语言

HTML文件必须以.html或者.htm为后缀。

标准格式:

<html>
  <head>
    <title>//页面信息</title>
    <meta http-equiv="Content-Type" content="text/html; charser=gb2312" />内
    容<meta> 如果没内容后面的<meta>可以省略
    //设置关键词(搜索引擎搜素)
    <meta name="keywords"> content="内容"/>
    //网站描述
    <meta name="description" content="描述内容>
  </head>
  <body>
  //页面内容
  </body>
</html>

原文地址:https://www.cnblogs.com/LunWeiFeng/p/6669404.html