सभी फ़ॉन्ट गुण सेट करने के लिए, 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</button> <script> function display() { document.getElementById("myID").style.font = "italic 15px verdana,sans-serif"; } </script> </body> </html>