<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style type="text/css">
a[href="2.html"]{
color: aqua;
}
#mv{
color: blue;
}
a{
color: violet;
}
p,span{
color: red;
}
</style>
</head>
<body>
<div>
<nav>
<a href="2.html" target="tac">首页</a>
<a id="mv" href="3.html" target="tac">导航</a>
<a href="4.html" target="tac">导航</a>
<a href="5.html" target="tac">导航</a>
</nav>
<p>xcvvcxvxcvxcvxcv</p>
<span>xcxcccccccc</span>
</div>
<div>
<iframe src="2.html" name="tac"></iframe>
</div>
</body>
</html>