letter-spacing: .5em
<html> <head> <title>Font Illustration</title> <style> .line1 {font-size: 24pt; letter-spacing: .5em; } .line2 {font-size: 32pt; font-weight: bold; font-style: italic; line-height: 2.5em} </style> </head> <body> <span class="line1">line1</span><br/> <div class="line2">line2</div> </body> </html>