TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <head> <style> .row { display: flex; } .column { flex: 50%; padding: 10px; } </style> </head> <body> <h2>Layout Example</h2> <div class="row"> <div class="column" style="background-color: #f1f1f1;"> Column 1 </div> <div class="column" style="background-color: #ddd;"> Column 2 </div> </div> </body> </html>