Wednesday, 27 March 2024

Text center in box with link

 Display Text center in box with link

<!DOCTYPE html>

<html>

<head>

<style>

.center { 

  height: 100px;

  position: relative;

  border: 3px solid green; 

  background-color:#000000;

  

}


.center p {

  margin: 0;

  position: absolute;

  top: 50%;

  left: 50%;

  -ms-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

  

}

</style>

</head>

<body>


<a href="https://adquash.com" style="color:#ffffff;font-size:24px;text-decoration:none;"><div class="center">

  <p>Post Free Classified Ads</p>

</div></a>


</body>

</html>