HTML TAGS IN PHP

<?php
$wishes = "Hello!";
echo $wishes;
echo "<h4>PHP and Html Heading !</h4>";
?>
Html Output:
Hello!
PHP and Html Heading !