Can you be more specific? It is possible to open an html file like any other file with fopen.
if you are trying to open an html file on a remote server then use
$webpage="http://www.website.com/webpage.html";
$fp=fopen($webpage,"r") or die("message");
Is there something more sinister that you are trying to do?