<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of PHP echo Statement</title>
</head>
<body>
<?php
// Displaying string of text
echo "Hello World!";
?>
</body>
</html>