Introduction to PHP 4/13
PHP Files
You might have noticed that our main file is now
index.php instead of index.html. This is important! It tells the PHP interpreter that there's PHP code in the file to evaluate.<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p>
<?php
echo "FeEvo";
?>
</p>
</body>
</html>
CSS
p {
font-family: Garamond, serif;
}
Comments
Post a Comment