I want something like this
FaQ\'s
means on clicking FAQ\'s ,cms page created named <
If you are writing in phtml file then you can use
<a href="<?php echo $this->getUrl('cms page identifer'); ?>">yourlink</a>
and if you are writing in static block or page then you can use
<a href={{store url="cms page identifer"}}>your link</a>
Try like this
<a href="<?php echo $this->getUrl('')?>Faqs">FaQ's</a>
Try this
<a href="<?php echo $this->getUrl('Your cms page identifier'); ?>">My url</a>