what is your goal you could just type it <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>my page</title> </head> <body> <p>C:\windows\system32</p> </body> </html> HTML:
He probably wants to know how to insert a dynamic var into an HTML page Using PHP you can do this, for example: <a href="http://www.domain.com/<?php echo $subdirectory ?>/file.html">Click me now!</a> PHP: HTH, cheers!