<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- 告诉浏览器你使用的是html的什么标准, 该标准一个叫w3c的机构制定-->
<html>
<head>
<title>imgfilter.html</title>
<!-- 这里的keyword1,keyword2,keyword3的作用是方便搜索引擎搜索你这个网站 -->
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<!-- 这是对这个页面的注释 -->
<meta http-equiv="description" content="this is my page">
<!-- 这是字符集编码的设置 -->
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<style type="text/css">
a:link img{
filter:gray;
}
a:hover img{
filter:"";
}
</style>
</head>
<body>
<a href="#"><<img alt="出事了" src="images/1.jpg" width="1300px"/></a><br/>
<a href="#"><img alt="出事了" src="images/2.jpg"/></a><br/>
</body>
</html>