फ़ॉन्टवेट का उपयोग करें जावास्क्रिप्ट में संपत्ति फ़ॉन्ट बोल्डनेस सेट करने के लिए।
उदाहरण
आप जावास्क्रिप्ट के साथ फ़ॉन्ट की बोल्डनेस सेट करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <h1>Heading 1</h1> <p id="myID"> This is Demo Text. </p> <button type="button" onclick="display()">Set Font Family and Font Weight</button> <script> function display() { document.getElementById("myID").style.fontFamily = "verdana,sans-serif"; document.getElementById("myID").style.fontWeight = "800"; } </script> </body> </html>