安装两款插件
1.firebug
2.webdevelope tools
html页面元素:
1.doctype
2.html
. 1)head
. *编码
. *样式
. 事件
.2)body
正文
<!-- 1.页面文档 -->
<!DOCTYPE html>
<!-- //浏览器通用标准 --utf-8>
<html>
<head>
<!-- head头 -->
<meta charset="utf-8">
<style type="text/css">
h1{
color: red;
}
</style>
<script src="jquery.js"></script>
<script>
$(function() {
$("h1").click(function() {
$(this).hide(1000);
});
});
</script>
</head>
<body>
<!-- body体-->
<h1>php第一节</h1>
</body>
</html>
<!-- 一个网站包含两大块,doctype和html
head头里面要定义3部分
(1)编码标准和格式
(2)事件和选项 -->
(3)样式