Files
cs2440/exercises/2/index.php
T
2025-01-27 20:21:02 -07:00

17 lines
187 B
PHP

<!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>