JavaScript - Change Text Font Size

In this tutorial we will create a Change Text Font Size using JavaScript. This code will change the text font size when user click a button. The code use onclick() to call a method that change the text font size base on the value given by a binded javascript function in the button. Feel free to modify and apply it in your system, this is a user-friendly kind of program We will be using JavaScript as a server-side scripting language because It gives a greater control of your web page and extend its capability in a modern way approach. It is written in HTML or as an external sourcing to add some necessary features in your website.

Getting started:

First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5. <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6. </head>
  7. <nav class="navbar navbar-default">
  8. <div class="container-fluid">
  9. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10. </div>
  11. </nav>
  12. <div class="col-md-3"></div>
  13. <div class="col-md-6 well">
  14. <h3 class="text-primary">JavaScript - Change Text Font Size</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <div class="col-md-4">
  17. <h4>Choose a Font Size</h4>
  18. <button class="btn btn-default btn-sm" onclick="textResizer(8);" style="margin:5px;">8pt</button>
  19. <button class="btn btn-default btn-sm" onclick="textResizer(10);" style="margin:5px;">10pt</button>
  20. <button class="btn btn-default btn-sm" onclick="textResizer(11);" style="margin:5px;">11pt</button>
  21. <button class="btn btn-default btn-sm" onclick="textResizer(12);" style="margin:5px;">12pt</button>
  22. <button class="btn btn-default btn-sm" onclick="textResizer(14);" style="margin:5px;">14pt</button>
  23. <button class="btn btn-default btn-sm" onclick="textResizer(16);" style="margin:5px;">16pt</button>
  24. <button class="btn btn-default btn-sm" onclick="textResizer(18);" style="margin:5px;">18pt</button>
  25. <button class="btn btn-default btn-sm" onclick="textResizer(20);" style="margin:5px;">20pt</button>
  26. <button class="btn btn-default btn-sm" onclick="textResizer(24);" style="margin:5px;">24pt</button>
  27. </div>
  28. <div class="col-md-8">
  29. <center><h2 class="text-primary" id="result">SOURCECODESTER</h2></center>
  30. </div>
  31. </div>
  32. <script src="js/script.js"></script>
  33. </body>
  34. </html>

Creating the Script

This code contains the script of the application. This code will change the text font size when the button is clicked. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
  1. function textResizer(num){
  2. var font=parseInt(num);
  3. document.getElementById('result').style.fontSize=font+"px";
  4. }
There you have it we successfully created a Change Text Font Size using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment