day 3 classwork.

This commit is contained in:
Joshua Ashton
2025-01-27 20:21:02 -07:00
parent cad0d444ad
commit e8191f2849
3 changed files with 63 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<!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>