<!DOCTYPE html>
<html>
<head>
<title>CSS letter-spacing property</title>
<style>
p {
font-family: sans-serif;
font-size: 20px;
padding: 10px;
}
p.one {
letter-spacing: normal;
}
p.two {
letter-spacing: .2rem;;
}
p.three {
letter-spacing: 5px;
}
p.four {
letter-spacing: 0.4em;
}
p.five {
letter-spacing: -1px;
}
</style>
</head>
<body>
<p class="one">This paragraph text represents the letter spacing property</p>
<p class="two">This paragraph text represents the letter spacing property</p>
<p class="three">This paragraph text represents the letter spacing property</p>
<p class="four">This paragraph text represents the letter spacing property</p>
<p class="five">This paragraph text represents the letter spacing property</p>
</body>
</html>