get_permalink() gives a certain page link only. how to solve this.?

Pass ID of post/page that you want to get link…

like this:–

//if you are in loop.
$id = get_the_ID();
//If you are not in loop, simply pass post/page ID.
the_title('<a class="" href="' . get_permalink($id) . '"><h1 class="">', '</h1></a>');