Midterm Excercise 1 (เสร็จแล้ว)
✨ KOTCHAKORN KAJONCHAI
<html> <head> <title>Let's Start </title> <style> div { height: 100px; width: 100px; margin: 5px; } .onetwo{ background-color: red; } .threetofive{ background-color: blue; } } </style> </head> <body> <div class="onetwo"></div> <div class="onetwo"></div> <div class="threetofive"></div> <div class="threetofive"></div> <div class="threetofive"></div> <!-- == Exercise 1 == 1. สร้างกล่อง Div ขนาด 100x100 pixel, margin รอบทิศทาง ขนาด 5 pixel จำนวน 5 กล่อง 2. ให้กล่อง 1 - 2 สีแดง 3. ให้กล่องอื่นๆ สีน้ำเงิน --> </body> </html>