Question : How do I set up a link to a specific page within a wordpress template?

This has got to be such a simple thing, but I can't figure out how to hard code a link to a specific page.

Thanks
Jules
1:
<p><a href="<?php echo get_permalink('services');?>" >Lorem ipsum dolor sit amet, </a>consectetur adipiscing elit. Integer nec odio. Praesent libero.</p>

Answer : How do I set up a link to a specific page within a wordpress template?

Inside of the text editor you select the type you want to be a link then click the paperclip (link button), then type in the site URL. and click save.

Example: I want my name to link to this website it would look like this in HTML:

<a href="http://www.experts-exchange.com">jeremyjared74</a>

if it link from one page to another in your own site you can leave off the http:// Like this:
<a href="/experts-exchange.com">jeremyjared74</a>
Random Solutions  
 
programming4us programming4us