<?php
$hello 
"Hello, world!";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title><?php print $hello?></title>
</head>
<body>
<?php
print $hello;
?>
</body>
</html>