php tag for html code example
Example 1: php inside html tag
<?php
$param = "test";
?>
<a href="http://www.whatever.com/<?php echo $param; ?>">Click Here</a>
Example 2: html in php
//Display html code in php
<?php
echo'<form action="StorePage.php" method="post">';
?>