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