Midterm Excercise 1 (Branch 3799)
✨ Oof Thiraphop
<html> <head> <title>Let's Start </title> <style> body{ display: block; } .box{ width: 100px; height: 100px; background: blue; margin: 5px; } .box:nth-child(1){ background: red; } .box:nth-child(2){ background: red; } </style> </head> <body> <div class="box"></div> <div class="box"></div> <div class="box"></div> <div class="box"></div> <div class="box"></div> </body> </html>