Input
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Inch-based Div Example</title> <style> div { width: 5in; height: 3in; background-color: lightcoral; color: white; font-size: 20px; display: flex; align-items: center; justify-content: center; border: 2px solid #222; margin: 20px; } </style> </head> <body> <div> 5 inches wide × 3 inches tall </div> </body> </html>