I'm trying to make a page link like below but it's not working. (I'm new developer in WP).
<a href="<?= home_url() ?>/about-us">about us</a>
Replace your code with this
<a href="<?php echo home_url(); ?>/about-us">about us</a>