<!DOCTYPE html>
<html lang="en">
<head>
<title>PHP Strings</title>
</head>
<body>
<?php
$a = 'Well come to aimtocode!';
echo $a;
echo "<br>";
$b = "Hope you enjoy learning!";
echo $b;
echo "<br>";
$c = 'Stay here, learn more.';
echo $c;
?>
</body>
</html>