<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of PHP echo Statement</title>
</head>
<body>
<?php
// Displaying HTML code
echo "<h4>This is a simple heading.</h4>";
echo "<h4 style='color: red;'>This is heading with style.</h4>";
?>
</body>
</html>