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