1 <!DOCTYPE html>
2<html>
3<head>
4 <meta charset="utf-8">
5 <title></title>
6 <style type="text/css">
7 .par{
8 color: white;
9 border: 1px solid black;
10 width: 400px;
11
12 }
13 .par:hover {
14 background-color: skyblue;
15 transition: 1s;
16 cursor: pointer;
17 }
18 </style>
19
20</head>
21<body>
22<p class="par" ><font color="white">hello thank you for hovering</font></p>
23</body>
24</html>