Site icon DataFlair

CSS Cursor Property

Full Stack Web Development Courses with Real-time projects Start Now!!

Program 1

<html>
    <head>
        <style>
            p{
                cursor:progress;
            }
        </style>
    </head>
    <body>
        <p>Some text</p>
    </body>
</html>

 

Exit mobile version