Here is the html page say index.html
<html>
<head><title>Change Color</title>
</head>
<body>
<div id="header"></div>
</body>
</html>
and the css is style.css
#header
{
width:100px;
height:100px;
background-color:red;
-webkit-border-radius:10px;
}
#header:hover
{
background-color:purple;
}
hope it will be helping you...
No comments:
Post a Comment