Edit This Code:
<!DOCTYPE html>
<html>
<body>

<p id="myP">This is an example paragraph.</p>

<button type="button" onclick="myFunction()">Decorate text</button>

<script>
function myFunction() {
    document.getElementById("myP").style.textDecoration = "underline overline";
}
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy