<?php
$my_text = <<<TEXT1
The Mojave Desert occupies a
significant portion of southeastern
California and smaller parts of
central California, southern Nevada,
southwestern Utah and northwestern
Arizona, in the United States.
Named after the Mohave tribe of Native
Americans, it displays typical
basin and range topography.
TEXT1;
echo "<div style='font-size:22px;color:#333333;'>";
echo $my_text;
echo "</div>";
?>