<html>
<body>
<h1>Change word-spacing with JavaScript</h1>
<p>Click the "Try it" button to make the space between words in the DIV element 20 pixels:</p>
<button onclick="myFunction()">Try it</button>
<div id="myDIV">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
</div>
<script>
function myFunction() {
document.getElementById("myDIV").style.wordSpacing = "20px";
}
</script>
</body>
</html>