<!DOCTYPE html>
<html>
<head>
<title>styled button</title>
</head>
<body>
<button id=”btn”>BUTTON</button>
<span>This is a styled button</span>
<style>
#btn{
background:blue;
color:white;
width:10em;
height:7em;
border-radius:20em;
border:solid;
border-color:green gold;
border-width:1em;
}
</style>
</body>
</html>
OUTPUT:


Nice
LikeLiked by 1 person
Thanks
LikeLike