Result Size: 1264 x 76
x
 
<!DOCTYPE html>
<html>
<body>
<?php
$colors = array("red", "green", "blue", "yellow");
foreach ($colors as $value) {
  echo "$value <br>";
}
?>
</body>
</html>
                
red
green
blue
yellow