Not sure what you are asking. The simplest thing is to just escape out of PHP mode and have the HTML text directly entered:
<?php
// some PHP code here, then...
?>
<a href="foobar">Some plain old HTML here.</a>
<?php
// some more PHP code here
?>
If there is more to this question than meets my eye, I'll need a more detailed explanation, I guess.
PS: You could [man]echo[/man], [man]print[/man], or [man]printf[/man] it in a number of ways, but from the info provided so far, that seems unnecessary.