HTMLify
BUTTONCSS.HTML
Views: 510 | Author: dakshbadal1379
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | <html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DefaultButton</title>
<style type="text/css">
a{
text-align: center;
font: 40px arial;
display: block;
text-decoration: none;
color: white;
background-color: orange;
border: 2px solid black;
justify-content: center;
width: 30%;
padding-bottom: 10px;
}
a:hover{
color: blue;
background-color: greenyellow;
border-radius: 8px;
box-shadow: 02px 2px 0 0 rgb(244,73,48,1.0);
/* transition: 2s;*/
/* transform: scale(1.1);*/
}
</style>
</head>
<body>
<div>
<a href="">Hover Me</a></div>
</body>
</html>
|