ก้อง ชนะพล 63070028
✨ นายชนะพล ชื่นชูวิทย์
<html> <head> <title>Let's Start </title> <style> .box_r{ height:100; width:100; margin:5; background-color: red; } .box_b{ height:100; width:100; margin:5; background-color: blue; } </style> </head> <body> <!-- == Exercise 1 == 1. สร้างกล่อง Div ขนาด 100x100 pixel, margin รอบทิศทาง ขนาด 5 pixel จำนวน 5 กล่อง 2. ให้กล่อง 1 - 2 สีแดง 3. ให้กล่องอื่นๆ สีน้ำเงิน --> <div class = "box_r"> </div> <div class = "box_r"> </div> <div class = "box_b"> </div> <div class = "box_b"> </div> <div class = "box_b"> </div> </body> </html>