ফন্ট সাইজ সেট করতে, fontSize ব্যবহার করুন জাভাস্ক্রিপ্টে সম্পত্তি। আপনি JavaScript-
এর সাথে পাঠ্যের ফন্ট সাইজ সেট করতে নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেনউদাহরণ
<!DOCTYPE html> <html> <body> <h1>Heading 1</h1> <p id = "myID"> This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. This is Demo Text. </p> <button type = "button" onclick = "display()">Set Font Family and Size</button> <script> function display() { document.getElementById("myID").style.fontFamily = "verdana,sans-serif"; document.getElementById("myID").style.fontSize = "smaller"; } </script> </body> </html>