css button style
CSS Button Style
Example:-
<html>
<head><title>html shadow button</title>
<style>
.btn-shadow1
{
background-color:rgb(63, 61, 188);
border-radius: 10px;
color:aliceblue;
padding:15px 30px;
font-size:16px;
box-shadow:1px 1px 3px 3px palevioletred;
}
</style>
</head>
<body>
<button class="btn-shadow1" onclick="alert('hi friends')">
<B>Shadow Button</B></button>
</body>
</html>
Post a Comment