CSS letter-spacing property used to add space between characters of a word.

<html>
<head>
<style type="text/css">
#p-ltr-spce{
  letter-spacing: 6px;
}
</style>
</head>
<body>
<p id="p-ltr-spce">
  Letter spacing example
</p>
</body>
</html>