require takes the html and puts it into the script. to make it show the page, you have to have
print "line one"
print "line two"
etc.
or you can do fopen(file,mode)
fread($file,$lineone)
fread($file,$linetwo)
fread($file,$linethree)
...
fclose($file)
Then, you can print $lineone,print $linetwo etc.
That would work.