<?php
$hello = "Hello World!";
?>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
echo "<p>" . $hello . "</p>";
</body>
</html>