I'm trying to learn HTML and PHP. I grabbed the XAMPP installer for Windows and started the Apache and MySQL server, created an HTML file as shown beneath - but the PHP code doesn't run. I do have a PHP directory on C:\XAMPP, but it doesn't look like PHP is properly installed / working.
<!DOCTYPE html>
<html>
<body>
<h1>Test</h1>
<?php
echo "Hello World!";
?>
</body>
</html>
What am I doing wrong here?