PHP Program to Initialize variable and print

Program

<!DOCTYPE html>
<html>
<body>
<?php
$color = "Blue";
echo "Color of ocean is " . $color ;
?>
</body>
</html>

Output

Color of ocean is Blue