<html>
<body>
<p id="myP1">This is an example paragraph.</p>
<p id="myP2">This is an example paragraph.</p>
<button type="button" onclick="changeLetters()">Set letter spacing</button>
<button type="button" onclick="changeWords()">Set word spacing</button>
<script>
function changeLetters() {
document.getElementById("myP1").style.letterSpacing = "15px";
}
function changeWords() {
document.getElementById("myP2").style.wordSpacing = "15px";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_style_letter_wordspacing by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 14:06:14 GMT -->
</html>