Pro Css Website Button

C

ConanArabic

Guest
The Code Here:

Html File:
PHP:
<html>



<head>
<title>??</title>
<link rel="stylesheet" href="style.css" media="screen" />
</head>



<body>
<center>
<div class="btn"><a href="#">Download</a></div>

</center>
</body>



</html>

Css File:
PHP:
.btn {margin-top:30px;padding:0;}
.btn a{
	text-decoration:none;
	background:#444;
	color:#fff;
	font:bold 14px arial;
	padding:10px 20px 10px 20px;
	border:1px solid #252525;
	border-radius:5px;
	box-shadow:inset 0 0 1px #fff;
	transition:0.5s;
	}
.btn a:hover{
	background:#0091c0;
	transition:0.5s;
	}
.btn a:focus{
	outline:none;
	}

:good: