ফন্টের স্টাইল সেট করতে, 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>