JSFiddle - React, Tailwind, and code Playground

by alaa13212

HTML

<html>
<head>
    <style type="text/css">
        .button{
            font-family: Arial;
            color: #ffffff;
            font-size: 20px;
            padding: 10px;
            text-decoration: none;
            -webkit-border-radius: 16px;
            -moz-border-radius: 16px;
            -webkit-box-shadow: 0px 1px 3px #666666;
            -moz-box-shadow: 0px 1px 3px #666666;
            text-shadow: 1px 1px 3px #666666;
            border: solid #003366 2px;
            background: -webkit-gradient(linear, 0 0, 0 100%, from(#42aaff), to(#003366));
            background: -moz-linear-gradient(top, #42aaff, #003366);
        }
        .button:hover {
            background: #42aaff;
        }
    </style>
</head>
<body>

    <button class="button">إضغط هنا</button>
    
</body>
</html>