MultiTalk 1 หมากรุก (Branch 329)
✨ NOPPAWAN PAKINSEE
<html> <head> <title>Let's Start</title> <style> body { font-family: sans-serif; margin: 0; } div { background: grey; float: left; width: 14.2%; height: 14.28%; } div:nth-child(even) { background: red; } </style> </head> <body> <!-- ทำตารางหมากรุก 7*7 --> <script> for (let i = 0; i < 49; i++) { document.write(`<div></div>`); } </script> </body> </html>