17 lines
187 B
PHP
Executable File
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>
|