You can save pure html file with a php extension without added server load.
All code in a .php file is processed by your web server, until the server encounters <?php, or <?. At which time it surrenders processing to php zend engine for processing. PHP engine gives back processing to your web server when ?> is encountered.
Hence, if you do not have any php identifier, it means your web server will process all html code, as it would if the file extension were .html.
Richie.