Code for this:-
<html>
<head>
<style>
.button {
background-color: #008CBA ;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius:50vh;
}
</style>
</head>
<body>
<button>Default Button</button>
<a class="button" href="#">Link Button</a>
<button class="button">Button</button>
<input class="button" id="bu" type="button" value="input type button" />
</body>
</html>
Link Button
<html>
<head>
<style>
.button {
background-color: #008CBA ;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius:50vh;
}
</style>
</head>
<body>
<button>Default Button</button>
<a class="button" href="#">Link Button</a>
<button class="button">Button</button>
<input class="button" id="bu" type="button" value="input type button" />
</body>
</html>
Link Button
0 Comments