finish ex1 tonhom
✨ th pvrs
<html> <head> <title>Let's Start </title> <style> .box-red{ width:100px; height:100px; background:hsl(0,100%,50%); margin:5px; } .box-blue{ width:100px; height:100px; background:hsl(240,100%,50%); margin:5px; } </style> </head> <body> <div class="box-red"></div> <div class="box-red"></div> <div class="box-blue"></div> <div class="box-blue"></div> <div class="box-blue"></div> <!-- == Exercise 1 == 1. สร้างกล่อง Div ขนาด 100x100 pixel, margin รอบทิศทาง ขนาด 5 pixel จำนวน 5 กล่อง 2. ให้กล่อง 1 - 2 สีแดง 3. ให้กล่องอื่นๆ สีน้ำเงิน --> </body> </html>