HTML简介

html的概念
hyper text markup language 超文本标记语言
 
html的发展史
1991 html
1995 html2
1996 html3.2
1997 html4.0
1999 html4.01
2000 xhtml1.0
2001 xhtml1.1
2005 xhtml2.0
2008 html5草案
2014 html5正式
 
html文档
文档申明
<!DOCTYPE html>   html5的文档声明
     首行、顶格
     html4.01
          strict.dtd 严格
          loose.dtd 松散
          frameset.dtd 框架
 
文档的头部
<head>
     <mate charset="utf-8">
     <title>标题</title>
     <mate name="keyword" content="">                    content中的内容可以被搜索引擎使用
     <mate name=“description” content="">                       
     <mate name=“viewpoint” content=“width-device-width”>     移动端浏览器中使用
     <link rel=“shorycut icon” href=“favicon.ico”>                    网站的图标
     <link rel=“stylesheet” href=“../css/style.css”>
     <style>
     </style>
     <script></script>
</head>
 
 
posted @ 2016-07-25 01:00  Kuckboy_shan  阅读(163)  评论(0编辑  收藏  举报