<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Line Height using CSS</title> <style> p { line-height: 1.5; border: 2px solid blue; } div { line-height: 200%; border: 2px solid green; </style> </head> <body> <h1>This is a Important Text</h1> <p>The <code>Taj Mahal</code>, is an <code>ivory-white</code> marble mausoleum on the right bank of the river Yamuna in the Indian city of Agra. </p> <div>It was commissioned in <code>1632 </code>by the Mughal emperor Shah Jahan to house the tomb of his favourite wife, Mumtaz Mahal; it also houses the tomb of Shah Jahan himself.</div> </body> </html>