<html>
<head>
<title>Hello world en couleur</title>
</head>
<body>
<?php
$tag = "blue";
echo <<<HELLO 
<font color="$tag">Hello world!</font>
HELLO;
?>
</body>
</html>