一:head头部
1.:0:<!doctype html > 告知浏览器,以下文档为html文档
1.1:<html lang=”zh-Hans”> 定义此文档使用的语言
1.2:<head></head> 头部内容
1.3:<meta charset=”utf-8”>
1.4:<meta http-equiv="X-UA-Compatible" content="ie=edge"> 如果安装了GCF,则使用GCF来渲染页面,如果没安装GCF,则使用最高版本的IE内核进行渲染。
1.5:<meta name="viewport" content="width=device-width, initial-scale=1.0"> 移动端页面适配
1.6:<meta name="description" content=""/>站点描述信息
1.7:<meta name="keywords" content=""/> 站点关键字信息
1.8:<meta name="author" content=""/> 程序作者信息
1.9:<link rel=“stylesheet” type=”text/css” href=””> 引入外部css样式
2.0:<style></style>内部css样式
2.1:<link rel=”shortcut icon” type=”image/x-icon” herf=””>icon网站标识
2.2:<script src=””></script> 引入外部js
2.3:< script ></script>内部js