Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>chessboard</title>
- <style media="screen">
- table,th,td{
- margin: 50px auto;
- border: 1px solid black;
- border-collapse: collapse;
- padding: 10px;
- }
- </style>
- </head>
- <body>
- <table>
- <?php
- for ($row=0; $row < 8; $row++) {
- echo "<tr>";
- for ($colum=0; $colum < 8; $colum++) {
- $total = $row+$colum;
- if ( $total % 2 == 0) { //checking even column;
- echo "<td style='background-color:black;'></td>";
- }
- else {
- echo "<td style='background-color:gray;'></td>";
- }
- }
- }
- ?>
- </table>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment