फ़ॉन्ट आकार सेट करने के लिए, fontSize . का उपयोग करें जावास्क्रिप्ट में संपत्ति। जावास्क्रिप्ट के साथ टेक्स्ट का फ़ॉन्ट आकार सेट करने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!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>