Advertisement
Militsa

02. Numbers 1 to 20_2

Jan 4th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Numbers 1 to 20</title>
  5. </head>
  6. <body>
  7. <ul>
  8.     <?php
  9.     for($i = 1; $i<=20; $i++) {
  10.         if($i % 2 == 1) {
  11.             $color = 'blue';
  12.         } else {
  13.             $color = 'green';
  14.         }
  15.         echo "\t<li><span style='color: $color'>$i</span></li>\n";
  16.     }
  17.     ?>
  18. </ul>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement