In this post I will teach about html button Height and Width using CSS you can use the below code then customize the size this is the easy for link button..

<html> <head> <style> button { width: 150px; height :70px; } </style> </head> <body> <button class="button lgb active" onClick="parent.location='https://inpagefree.blogspot.com/2022/07/can-you-convert-pdf-to-excel.html'">Click Me</button> </body> </html> Second Method' <html> <head> </head> <body> <button class="button lgb active" onClick="parent.location='https://drive.google.com/uc?id=11DAb1wCCZUTMdhfiU8uUg2uXbTpfTnFh&export=download'" style="height: 70px; width: 150px;">Click Me</button> </body> </html>
 
Top