I found the solution, thanks. I just use the following code and put the html in the txt file.
<div id="ddblueblockmenu">
<?php
$file = "links/test.txt";
$data = file($file) or die("could not read file!!!");
foreach ($data as $line) {
echo $line;
}
?>
</div>