Link

 <!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
a:link{
color: red;
}
a:visited{
color: blue;
}

a:hover{
color: green;
font-size: x-large;
}

a:active{
color: yellow;
}
.div{
width: 200px;
height: 200px;
background: yellow;

}

.div:hover{
width: 400px;
height: 400px;
background: blue;
}
</style>
</head>
<body>
<a href="index.html">Home</a>
<a href="computer.jpg">Computer</a>

<div class="div">

</div>

</body>
</html>

Comments

Popular posts from this blog