Answers for "javascript set text bold"

1

make text bold js

<button onclick="myFunction()">Try it</button>

<p >Make text bold <span id="demo">Text Bold</p>

<script>
function myFunction() {
  document.getElementById("demo").style.fontWeight = "900";
}
</script>
Posted by: Guest on June-12-2020

Browse Popular Code Answers by Language