Online Html Editor

<!DOCTYPE html> <html> <head> <style> .first { line-height: 1; } .second{ line-height: 1.5; } .third{ line-height: 2; } </style> </head> <body> <h2>Line Height Examples</h2> <p class="first"> This is a font with line-height of 1. </p> <p class="second"> This is a font with line-height of 1.5. </p> <p class="third"> This is a font with line-height of 2. </p> </body> </html>