फ़ॉन्ट फ़ैमिली सेट करने के लिए, fontFamily का उपयोग करें जावास्क्रिप्ट में संपत्ति।
उदाहरण
आप जावास्क्रिप्ट के साथ टेक्स्ट के लिए फ़ॉन्ट परिवार सेट करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं -
<!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</button> <script> function display() { document.getElementById("myID").style.fontFamily = "verdana,sans-serif"; } </script> </body> </html>