PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> p.a { font-family: "Times New Roman", Times, serif; } p.b { font-family: Arial, Helvetica, sans-serif; } </style> </head> <body> <h1>font-family property example</h1> <p class="a">This is a paragraph, shown in the Times New Roman font.</p> <p class="b">This is a paragraph, shown in the Arial font.</p> </body> </html>