HTMLify

BUTTONCSS.HTML
Views: 175 | Author: dakshbadal1379
<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>

Comments