How to create button to direct to certain category

If you know the id of the category, this is how you can output a link to category.

<a href="<?php echo get_category_link( $idofcategory ); ?>" title="Category Name">Category Name</a>

Check this :
https://developer.wordpress.org/reference/functions/get_category_link/

Above page also shows how you can get the category link from category name, in case if you don’t know id of the category.