diisplay
<!DOCTYPE html > <html lang ="en" > <head> <meta charset ="UTF-8" > <title> Title </title> <style> . box { height : 200 px ; width : 200 px ; background : #80c79c ; } . gallery { display : flex ; gap : 9 px ; } </style> </head> <body> <div class ="gallery" > <div class ="box" > Box 1 </div> <div class ="box" > Box 2 </div> <div class ="box" > Box 3 </div> <div class ="box" > Box 4 </div> </div> </body> </html>