Use the file() function, which parses a file into an array.
eg.
$theFile = file("page.html");
Each element of $theFile array corresponds to the respective line in the HTML document (line one is $theFile[0], line two is $theFile[1], because indexing starts at zero).
Then simply echo that variable in a loop within the textarea.