Files
2025-03-31 12:45:58 -06:00

17 lines
187 B
PHP
Executable File

<!doctype html>
<html lang="en">
<head>
<title>Exercise #2</title
</head>
<body>
<?php
$x = 'red';
echo '<p style="color: ' . $x . '">Some words here</p>';
?>
</body>
</html>