Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5.  
  6. <style>
  7. body {
  8. font-family: "Arial";
  9. }
  10.  
  11. table {
  12. width: 500px;
  13. height: 500px;
  14. border: 1px solid black;
  15. padding: 0;
  16. }
  17.  
  18. tr, td {
  19. padding: 0;
  20. margin: 0;
  21. }
  22.  
  23. .white {
  24.  
  25. }
  26.  
  27. .black {
  28. background-color: black;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div align="center">
  34. <h1 style="color:blue">Šahovnica</h1>
  35. <p>Šahovnico izpiše PHP skript z zanko for</p>
  36. <table>
  37. <?php
  38. for ($i = 0; $i < 10; $i++) {
  39. echo "<tr>";
  40. for ($j = 0; $j < 10; $j++) {
  41. if (($i+$j) % 2 == 1) {
  42. echo "<td class='black'></td>";
  43. } else {
  44. echo "<td class='white'></td>";
  45. }
  46. }
  47. echo "</tr>";
  48. }
  49. ?>
  50. </table>
  51. </div>
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement